summaryrefslogtreecommitdiff
path: root/morphlib/stopwatch_tests.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-02-27 19:33:20 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-02-27 19:33:20 +0000
commitc253820ef50eb5c564cc6e8e513eebf31601c5f2 (patch)
tree2d51cbeb13c2adfc19dd4de1e8fe421e95c19389 /morphlib/stopwatch_tests.py
parent4306a2073a870e6d5c6b41c285b66ab7d5efcccc (diff)
downloadmorph-c253820ef50eb5c564cc6e8e513eebf31601c5f2.tar.gz
Remove unnecessary unittest tearDown method
Diffstat (limited to 'morphlib/stopwatch_tests.py')
-rw-r--r--morphlib/stopwatch_tests.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/morphlib/stopwatch_tests.py b/morphlib/stopwatch_tests.py
index 460d765f..76490de8 100644
--- a/morphlib/stopwatch_tests.py
+++ b/morphlib/stopwatch_tests.py
@@ -25,9 +25,6 @@ class StopwatchTests(unittest.TestCase):
def setUp(self):
self.stopwatch = morphlib.stopwatch.Stopwatch()
- def tearDown(self):
- pass
-
def test_tick(self):
self.stopwatch.tick('tick', 'a')
self.assertTrue(self.stopwatch.times('tick'))