Browse Source

[trac363] duplicate test case cleanup

chenzhengzhang 14 years ago
parent
commit
c4d150ae45
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/lib/dns/python/tests/name_python_test.py

+ 0 - 2
src/lib/dns/python/tests/name_python_test.py

@@ -155,8 +155,6 @@ class NameTest(unittest.TestCase):
         self.assertRaises(TypeError, self.name1.split, "wrong", 1)
         self.assertRaises(TypeError, self.name1.split, 1, "wrong")
 
-        s = self.name1.split(0)
-        self.assertEqual("example.com.", s.to_text())
         s = self.name1.split(1)
         self.assertEqual("com.", s.to_text())