make the TestPostParsing test case work again

It needs to be a subclass of unittest.TestCase in order to get any of
the testing methods. Otherwise all of the tests fail when nosetests
finds those tests.
This commit is contained in:
Bryan Bishop
2013-09-01 14:29:31 -05:00
parent 47cde9c915
commit 4a00cfac15

View File

@@ -321,7 +321,7 @@ class TestMultiByteParam(unittest.TestCase):
}]
self.assertEqual(self.cls.to_asm(), "poop")
class TestPostParsing: #(unittest.TestCase):
class TestPostParsing(unittest.TestCase):
"""tests that must be run after parsing all maps"""
def test_signpost_counts(self):
self.assertEqual(len(map_names[1][1]["signposts"]), 0)