Skip to content

Commit

Permalink
Updating test string comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiirola committed Apr 6, 2020
1 parent 5772baf commit 2feaa83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyutilib/misc/tests/test_hierarchical_timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_hierarchical_timer(self):
timer.start('b')
timer.stop('b')
timer.start('a')
with self.assertRaisesRegex(ValueError, 'all is not the currently active timer. The only timer that can currently be stopped is all.a'):
with self.assertRaisesRegex(ValueError, 'all is not the currently active timer. The only timer that can currently be stopped is all.a'):
timer.stop('all')
timer.stop('a')
timer.stop('all')
Expand Down

0 comments on commit 2feaa83

Please sign in to comment.