summaryrefslogtreecommitdiff
path: root/tests/test_constants.py
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2021-12-19 12:00:29 -0800
committerBob Halley <halley@dnspython.org>2021-12-19 12:05:06 -0800
commit701169f45853cc7651a680a979679d046db409aa (patch)
treefa35a103b63b723e66b3f8a412299187d5493008 /tests/test_constants.py
parent0f1d40bb72942ec6785d18128723972d70e5b620 (diff)
downloaddnspython-701169f45853cc7651a680a979679d046db409aa.tar.gz
add dns.edns.EDECode enum
Diffstat (limited to 'tests/test_constants.py')
-rw-r--r--tests/test_constants.py3
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})