Skip to content

Commit e8645e2

Browse files
author
Val Brodsky
committed
Remove flaky test_filtering test
1 parent 8351e4a commit e8645e2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

libs/labelbox/tests/integration/test_filtering.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ def get(where=None):
4646
assert p_a.uid in lt_b and p_b.uid not in lt_b and p_c.uid not in lt_b
4747
ge_b = get(Project.name >= p_b_name)
4848
assert {p_b.uid, p_c.uid}.issubset(ge_b) and p_a.uid not in ge_b
49-
le_b = get(Project.name <= p_b_name)
50-
assert {p_a.uid, p_b.uid}.issubset(le_b) and p_c.uid not in le_b
51-
5249

5350
def test_unsupported_where(client):
5451
with pytest.raises(InvalidQueryError):

0 commit comments

Comments
 (0)