]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
add more info when equivalence test fails to see what is up on windows
authorBob Halley <halley@dnspython.org>
Thu, 18 Jun 2020 14:26:24 +0000 (07:26 -0700)
committerBob Halley <halley@dnspython.org>
Thu, 18 Jun 2020 14:26:24 +0000 (07:26 -0700)
tests/test_resolver_override.py

index e20681e1a450441060be428da01eac5cde7f5ac7..e60080b0fdcf6ac5542d92fee32c0744381c5271 100644 (file)
@@ -64,6 +64,9 @@ class OverrideSystemResolverTestCase(unittest.TestCase):
             return False
         for x in a:
             if x not in b:
+                print('NOT EQUIVALENT')
+                print(a)
+                print(b)
                 return False
         return True