mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-17 11:01:06 +00:00
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:
parent
2ba2988d2c
commit
4315e77ae1
1 changed files with 2 additions and 2 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue