Skip to content

Commit cbec81a

Browse files
committed
fix filter
Signed-off-by: BubbleCal <bubble-cal@outlook.com>
1 parent 89e432c commit cbec81a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/python/tests/weekly/test_recurring.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ def test_all_permutations(with_position):
212212
read_only_operations = [
213213
# Read only operations
214214
VectorSearch(),
215-
VectorSearch(filter="id >= 1000 && id < 8000"),
215+
VectorSearch(filter="id >= 1000 and id < 8000"),
216216
FullTextSearch(has_position=False),
217-
FullTextSearch(has_position=False, filter="id >= 1000 && id < 8000"),
217+
FullTextSearch(has_position=False, filter="id >= 1000 and id < 8000"),
218218
]
219219

220220
for permutation in itertools.permutations(range(len(write_operations))):

0 commit comments

Comments
 (0)