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 8351e4a commit e8645e2Copy full SHA for e8645e2
libs/labelbox/tests/integration/test_filtering.py
@@ -46,9 +46,6 @@ def get(where=None):
46
assert p_a.uid in lt_b and p_b.uid not in lt_b and p_c.uid not in lt_b
47
ge_b = get(Project.name >= p_b_name)
48
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
-
52
53
def test_unsupported_where(client):
54
with pytest.raises(InvalidQueryError):
0 commit comments