Skip to content

Commit e38b55b

Browse files
author
Kevin Kim
committed
Add missing .uids
1 parent ce5ed8a commit e38b55b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/test_filtering.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get(where=None):
2121

2222
assert {p_a.uid, p_b.uid, p_c.uid}.issubset(get())
2323
e_a = get(Project.name == "a")
24-
assert p_a.uid in e_a and p_b not in e_a and p_c not in e_a
24+
assert p_a.uid in e_a and p_b.uid not in e_a and p_c.uid not in e_a
2525
not_b = get(Project.name != "b")
2626
assert {p_a.uid, p_c.uid}.issubset(not_b) and p_b.uid not in not_b
2727
gt_b = get(Project.name > "b")
@@ -43,7 +43,7 @@ def get(where=None):
4343

4444
assert {p_a.uid, p_b.uid, p_c.uid}.issubset(get())
4545
e_a = get(Project.name == "a")
46-
assert p_a.uid in e_a and p_b not in e_a and p_c not in e_a
46+
assert p_a.uid in e_a and p_b.uid not in e_a and p_c.uid not in e_a
4747
not_b = get(Project.name != "b")
4848
assert {p_a.uid, p_c.uid}.issubset(not_b) and p_b.uid not in not_b
4949
gt_b = get(Project.name > "b")

0 commit comments

Comments
 (0)