File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -1012,4 +1012,3 @@ def enable_multimodal(self) -> dict:
10121012 def disable_multimodal(self) -> dict:
10131013 """Disable multimodal experimental feature."""
10141014 return self.update_experimental_features({"multimodal": False})
1015-
Original file line number Diff line number Diff line change 11"""Tests for experimental features API."""
22
3- import pytest
4-
53
64def test_get_experimental_features(client):
75 """Test getting experimental features."""
@@ -51,10 +49,7 @@ def test_disable_multimodal(client):
5149
5250def test_update_multiple_experimental_features(client):
5351 """Test updating multiple experimental features at once."""
54- response = client.update_experimental_features({
55- "multimodal": True,
56- "vectorStoreSetting": True
57- })
52+ response = client.update_experimental_features({"multimodal": True, "vectorStoreSetting": True})
5853 assert isinstance(response, dict)
5954 # At least one should be accepted (depending on Meilisearch version)
6055 assert "multimodal" in response or "vectorStoreSetting" in response
You can’t perform that action at this time.
0 commit comments