From 4a00cfac15ffff044425a8c7d698f394d9a79cef Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sun, 1 Sep 2013 14:29:31 -0500 Subject: 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. --- tests/integration/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/integration/tests.py') diff --git a/tests/integration/tests.py b/tests/integration/tests.py index 7dcfbf4..0d0ac68 100644 --- a/tests/integration/tests.py +++ b/tests/integration/tests.py @@ -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) -- cgit v1.2.3