diff options
| author | Bob Halley <halley@dnspython.org> | 2020-04-02 08:33:45 -0700 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2020-04-02 08:33:45 -0700 |
| commit | aa1c68c1898dd60fc86d90ea28c279c6aca39dc8 (patch) | |
| tree | 153784038c143f4ea3fce97df468148690ebe92a /tests/test_bugs.py | |
| parent | 16231c92d07514ae69ec77814e8533baa12526b3 (diff) | |
| download | dnspython-aa1c68c1898dd60fc86d90ea28c279c6aca39dc8.tar.gz | |
fix tests broken by immutable rdata conversion (lists became tuples)
Diffstat (limited to 'tests/test_bugs.py')
| -rw-r--r-- | tests/test_bugs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_bugs.py b/tests/test_bugs.py index c4b0e3c..59e5f0e 100644 --- a/tests/test_bugs.py +++ b/tests/test_bugs.py @@ -49,7 +49,7 @@ class BugsTestCase(unittest.TestCase): def test_empty_NSEC3_window(self): rdata = dns.rdata.from_text(dns.rdataclass.IN, dns.rdatatype.NSEC3, u"1 0 100 ABCD SCBCQHKU35969L2A68P3AD59LHF30715") - self.assertEqual(rdata.windows, []) + self.assertEqual(rdata.windows, ()) def test_zero_size_APL(self): rdata = dns.rdata.from_text(dns.rdataclass.IN, dns.rdatatype.APL, |
