diff options
| author | Bob Halley <halley@dnspython.org> | 2021-12-19 12:00:29 -0800 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2021-12-19 12:05:06 -0800 |
| commit | 701169f45853cc7651a680a979679d046db409aa (patch) | |
| tree | fa35a103b63b723e66b3f8a412299187d5493008 /tests/test_constants.py | |
| parent | 0f1d40bb72942ec6785d18128723972d70e5b620 (diff) | |
| download | dnspython-701169f45853cc7651a680a979679d046db409aa.tar.gz | |
add dns.edns.EDECode enum
Diffstat (limited to 'tests/test_constants.py')
| -rw-r--r-- | tests/test_constants.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_constants.py b/tests/test_constants.py index e818bb9..0c38c28 100644 --- a/tests/test_constants.py +++ b/tests/test_constants.py @@ -35,4 +35,5 @@ class ConstantsTestCase(unittest.TestCase): tests.util.check_enum_exports(dns.rdatatype, self.assertEqual) def test_edns_constants(self): - tests.util.check_enum_exports(dns.edns, self.assertEqual) + tests.util.check_enum_exports(dns.edns, self.assertEqual, + only={dns.edns.OptionType}) |
