Usunięcie linijki do debugowania z TestParseErrors.test_error w testach biblioteki...
authorMarek Stępniowski <marek@stepniowski.com>
Mon, 10 Aug 2009 15:27:49 +0000 (17:27 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Mon, 10 Aug 2009 15:27:49 +0000 (17:27 +0200)
lib/librarian/tests/__init__.py

index eeb7791..3f02541 100644 (file)
@@ -102,15 +102,12 @@ class TestDCParser(unittest.TestCase):
 
 
 class TestParserErrors(unittest.TestCase):
-
     def test_error(self):
         try:
             html.transform(test_file_path('erroneous', 'asnyk_miedzy_nami.xml'),
                            test_file_path('erroneous', 'asnyk_miedzy_nami.html'))
             self.fail()
         except etree.XMLSyntaxError, e:
-            import ipdb; ipdb.set_trace()
-            
             self.assertEqual(e.position, (25, 13))