- commit
- 37acf692577f6ed6c86065a572968c3f1f65465c
- parent
- 758e289169dcba671e6747c5ffe4e1043d6f970e
- Author
- Tobias Bengfort <tobias.bengfort@gmx.net>
- Date
- 2015-03-22 22:33
Fix tests: call super tearDown
Diffstat
| M | tests/test_curses.py | 2 | +- |
| M | tests/test_pygame.py | 2 | +- |
| M | tests/test_stupid.py | 2 | +- |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_curses.py b/tests/test_curses.py
@@ -26,4 +26,4 @@ class TestCurses(shared_core.TestCore): 26 26 27 27 def tearDown(self): 28 28 self.scr.cleanup()29 -1 super(TestCurses, self).setUp()-1 29 super(TestCurses, self).tearDown()
diff --git a/tests/test_pygame.py b/tests/test_pygame.py
@@ -20,7 +20,7 @@ class TestPygame(shared_core.TestCore): 20 20 21 21 def tearDown(self): 22 22 self.scr.cleanup()23 -1 super(TestPygame, self).setUp()-1 23 super(TestPygame, self).tearDown() 24 24 25 25 @unittest.expectedFailure 26 26 def test_getch_upper_ascii(self):
diff --git a/tests/test_stupid.py b/tests/test_stupid.py
@@ -20,4 +20,4 @@ class TestStupid(shared_core.TestCore): 20 20 21 21 def tearDown(self): 22 22 self.scr.cleanup()23 -1 super(TestStupid, self).setUp()-1 23 super(TestStupid, self).tearDown()