dont use XXX markers here

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2816 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2005-10-10 21:12:41 +00:00
parent 2ba2988d2c
commit 4315e77ae1

View file

@ -48,7 +48,7 @@ class TestRdTypeAndClass (unittest.TestCase):
def test_class_bytext_unknown(self):
def bad():
junk = linkcheck.dns.rdataclass.from_text('XXX')
junk = linkcheck.dns.rdataclass.from_text('XYZ')
self.assertRaises(linkcheck.dns.rdataclass.UnknownRdataclass, bad)
def test_class_totext1(self):
@ -103,7 +103,7 @@ class TestRdTypeAndClass (unittest.TestCase):
def test_type_bytext_unknown(self):
def bad():
junk = linkcheck.dns.rdatatype.from_text('XXX')
junk = linkcheck.dns.rdatatype.from_text('XYZ')
self.assertRaises(linkcheck.dns.rdatatype.UnknownRdatatype, bad)
def test_type_totext1(self):