diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 14:29:31 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 14:29:31 -0500 |
commit | 4a00cfac15ffff044425a8c7d698f394d9a79cef (patch) | |
tree | e872877753660a8b5b6983758ee08355de2ae62d /tests | |
parent | 47cde9c915f78a7176ebc51c8921163b82147903 (diff) |
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.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |