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 aac34cf commit 4e15544Copy full SHA for 4e15544
tests/client/test_experimental_features.py
@@ -24,9 +24,7 @@ def test_update_experimental_features(client):
24
25
def test_update_multiple_experimental_features(client):
26
"""Test updating multiple experimental features at once."""
27
- response = client.update_experimental_features(
28
- {"multimodal": True, "vectorStoreSetting": True}
29
- )
+ response = client.update_experimental_features({"multimodal": True, "vectorStoreSetting": True})
30
assert isinstance(response, dict)
31
# At least one should be accepted (depending on Meilisearch version)
32
assert "multimodal" in response or "vectorStoreSetting" in response
0 commit comments