File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def get(where=None):
21
21
22
22
assert {p_a .uid , p_b .uid , p_c .uid }.issubset (get ())
23
23
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
25
25
not_b = get (Project .name != "b" )
26
26
assert {p_a .uid , p_c .uid }.issubset (not_b ) and p_b .uid not in not_b
27
27
gt_b = get (Project .name > "b" )
@@ -43,7 +43,7 @@ def get(where=None):
43
43
44
44
assert {p_a .uid , p_b .uid , p_c .uid }.issubset (get ())
45
45
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
47
47
not_b = get (Project .name != "b" )
48
48
assert {p_a .uid , p_c .uid }.issubset (not_b ) and p_b .uid not in not_b
49
49
gt_b = get (Project .name > "b" )
You can’t perform that action at this time.
0 commit comments