We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2cfbc4 commit 887a7e3Copy full SHA for 887a7e3
tests/client/test_experimental_features.py
@@ -20,11 +20,3 @@ def test_update_experimental_features(client):
20
response = client.update_experimental_features({"multimodal": False})
21
assert isinstance(response, dict)
22
assert response.get("multimodal") is False
23
-
24
25
-def test_update_multiple_experimental_features(client):
26
- """Test updating multiple experimental features at once."""
27
- response = client.update_experimental_features({"multimodal": True, "vectorStoreSetting": True})
28
- assert isinstance(response, dict)
29
- # At least one should be accepted (depending on Meilisearch version)
30
- assert "multimodal" in response or "vectorStoreSetting" in response
0 commit comments