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):
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" )
You can’t perform that action at this time.
0 commit comments