summaryrefslogtreecommitdiff
path: root/morphlib/stopwatch_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/stopwatch_tests.py')
-rw-r--r--morphlib/stopwatch_tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/morphlib/stopwatch_tests.py b/morphlib/stopwatch_tests.py
index 5a6b1e07..7441eac3 100644
--- a/morphlib/stopwatch_tests.py
+++ b/morphlib/stopwatch_tests.py
@@ -32,9 +32,9 @@ class StopwatchTests(unittest.TestCase):
self.stopwatch.tick('tick', 'a')
assert self.stopwatch.times('tick')
assert self.stopwatch.time('tick', 'a')
- assert self.stopwatch.times('tick').has_key('a')
- assert (self.stopwatch.time('tick', 'a') ==
- self.stopwatch.times('tick')['a'])
+ assert 'a' in self.stopwatch.times('tick')
+ self.assertEqual(self.stopwatch.time('tick', 'a'),
+ self.stopwatch.times('tick')['a'])
now = datetime.datetime.now()
assert self.stopwatch.time('tick', 'a') < now
@@ -55,4 +55,4 @@ class StopwatchTests(unittest.TestCase):
watch_delta = self.stopwatch.start_stop_delta('start-stop')
assert our_delta.total_seconds() > 0
- assert our_delta == watch_delta
+ self.assertEqual(our_delta, watch_delta)