@@ -56,10 +56,10 @@ class MyComp(PrimaryKeyComparator):
5656
5757 inst = MyComp (lst1 , lst2 )
5858
59- assert not inst .get_matches ('l1' , 0 )
60- assert not inst .get_matches ('l1' , 1 )
61- assert not inst .get_matches ('l2' , 0 )
62- assert not inst .get_matches ('l2' , 1 )
59+ assert inst .get_matches ('l1' , 0 )
60+ assert inst .get_matches ('l1' , 1 )
61+ assert inst .get_matches ('l2' , 0 )
62+ assert inst .get_matches ('l2' , 1 )
6363 assert not inst .get_matches ('l2' , 3 )
6464
6565 assert inst .get_matches ('l1' , 2 ) == [(2 , lst2 [2 ])]
@@ -81,10 +81,10 @@ class MyComp(PrimaryKeyComparator):
8181
8282 inst = MyComp (lst1 , lst2 )
8383
84- assert not inst .get_matches ('l1' , 0 )
85- assert not inst .get_matches ('l1' , 1 )
86- assert not inst .get_matches ('l2' , 0 )
87- assert not inst .get_matches ('l2' , 1 )
84+ assert inst .get_matches ('l1' , 0 )
85+ assert inst .get_matches ('l1' , 1 )
86+ assert inst .get_matches ('l2' , 0 )
87+ assert inst .get_matches ('l2' , 1 )
8888 assert not inst .get_matches ('l2' , 3 )
8989
9090 assert inst .get_matches ('l1' , 2 ) == [(2 , lst2 [2 ])]
0 commit comments