Skip to content
This repository was archived by the owner on Sep 9, 2026. It is now read-only.

Commit 2fd9a4b

Browse files
authored
chore: fix test find by text and filter (#779)
1 parent d5b1db9 commit 2fd9a4b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/unit/array/mixins/test_find.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@ def test_find_by_text_and_filter(storage, config, filter, start_storage):
202202

203203
assert len(results) > 0
204204
assert all([int(r.id) < 10 for r in results])
205-
assert all([r.tags['i'] < 10 for r in results])
205+
if filter is not None:
206+
assert all([r.tags['i'] <= 5 for r in results])
206207

207208

208209
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)