summaryrefslogtreecommitdiff
path: root/tests
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:00:29 -0800
commitfe9ce6b49c535e117d95f2544dc22ff49b69b6fa (patch)
treef8e86dfc43db1564d78abed78a51f06311f63947 /tests
parent848ac7a0929409a3f4ab03322eadc1f2298a5313 (diff)
downloaddnspython-fe9ce6b49c535e117d95f2544dc22ff49b69b6fa.tar.gz
add dns.edns.EDECode enum
Diffstat (limited to 'tests')
-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})