diff options
| author | Bob Halley <halley@play-bow.org> | 2020-06-29 07:34:21 -0700 |
|---|---|---|
| committer | Bob Halley <halley@play-bow.org> | 2020-06-29 07:34:21 -0700 |
| commit | 16d5a27497e33cb7974f8c3cc6126c2069c2829c (patch) | |
| tree | d97cc4117b859e683c820a675baaa9f07f8bf700 /tests | |
| parent | 3ec856223df5e6287903de37fb67f496e6dd8bc6 (diff) | |
| download | dnspython-16d5a27497e33cb7974f8c3cc6126c2069c2829c.tar.gz | |
fix indentation of test_bogus_family()
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_ntoaaton.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_ntoaaton.py b/tests/test_ntoaaton.py index d8cb7bc..d256c1c 100644 --- a/tests/test_ntoaaton.py +++ b/tests/test_ntoaaton.py @@ -310,11 +310,11 @@ class NtoAAtoNTestCase(unittest.TestCase): t = dns.inet.low_level_address_tuple(('2600::1', 53), bogus) self.assertRaises(NotImplementedError, bad) - def test_bogus_family(self): - self.assertRaises(NotImplementedError, - lambda: dns.inet.inet_pton(12345, 'bogus')) - self.assertRaises(NotImplementedError, - lambda: dns.inet.inet_ntop(12345, b'bogus')) + def test_bogus_family(self): + self.assertRaises(NotImplementedError, + lambda: dns.inet.inet_pton(12345, 'bogus')) + self.assertRaises(NotImplementedError, + lambda: dns.inet.inet_ntop(12345, b'bogus')) if __name__ == '__main__': unittest.main() |
