From: Brian Wellington Date: Wed, 8 Jul 2020 18:16:28 +0000 (-0700) Subject: Remove debugging print. X-Git-Tag: v2.0.0~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f1186ad9c838de96b07b03858052faa2ce163bc;p=thirdparty%2Fdnspython.git Remove debugging print. --- diff --git a/tests/test_rdata.py b/tests/test_rdata.py index ca238953..022642fc 100644 --- a/tests/test_rdata.py +++ b/tests/test_rdata.py @@ -413,7 +413,6 @@ class RdataTestCase(unittest.TestCase): def test_from_wire_parser(self): wire = bytes.fromhex('01020304') rdata = dns.rdata.from_wire('in', 'a', wire, 0, 4) - print(rdata) self.assertEqual(rdata, dns.rdata.from_text('in', 'a', '1.2.3.4')) if __name__ == '__main__':