We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89e432c commit cbec81aCopy full SHA for cbec81a
1 file changed
python/python/tests/weekly/test_recurring.py
@@ -212,9 +212,9 @@ def test_all_permutations(with_position):
212
read_only_operations = [
213
# Read only operations
214
VectorSearch(),
215
- VectorSearch(filter="id >= 1000 && id < 8000"),
+ VectorSearch(filter="id >= 1000 and id < 8000"),
216
FullTextSearch(has_position=False),
217
- FullTextSearch(has_position=False, filter="id >= 1000 && id < 8000"),
+ FullTextSearch(has_position=False, filter="id >= 1000 and id < 8000"),
218
]
219
220
for permutation in itertools.permutations(range(len(write_operations))):
0 commit comments