]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
make skip message accurate
authorBob Halley <halley@dnspython.org>
Tue, 16 Jun 2020 23:59:33 +0000 (16:59 -0700)
committerBob Halley <halley@dnspython.org>
Tue, 16 Jun 2020 23:59:33 +0000 (16:59 -0700)
tests/test_query.py

index 7fcce09487a6416c87eb56928fb5f2585ff38879..b9a1fbbd6fac7b4af34e446834db8069ca956b4f 100644 (file)
@@ -291,8 +291,7 @@ class IXFRNanoNameserver(Server):
         except Exception:
             pass
 
-@unittest.skipIf(not _nanonameserver_available,
-                 "Internet and nanonameserver required")
+@unittest.skipIf(not _nanonameserver_available, "nanonameserver required")
 class XfrTests(unittest.TestCase):
 
     def test_axfr(self):
@@ -423,8 +422,7 @@ class TSIGNanoNameserver(Server):
             pass
         return response
 
-@unittest.skipIf(not _nanonameserver_available,
-                 "Internet and nanonameserver required")
+@unittest.skipIf(not _nanonameserver_available, "nanonameserver required")
 class TsigTests(unittest.TestCase):
 
     def test_tsig(self):