Tests: Fixed test descriptions

This commit is contained in:
Paul Beckingham 2016-04-11 23:06:16 -04:00
parent 9450caf39f
commit 4bddbf858b

View file

@ -57,12 +57,12 @@ class TestContinue(TestCase):
self.t = Timew()
def test_continue_nothing(self):
"""Verify that continuing an empty db does nothing"""
"""Verify that continuing an empty db is an error"""
code, out, err = self.t("continue")
self.assertIn("There is no previous tracking to continue.", out)
def test_continue_open(self):
"""Verify that continuing an open interval does nothing"""
"""Verify that continuing an open interval is an error"""
code, out, err = self.t("start tag1 tag2")
self.assertIn("Tracking tag1 tag2\n", out)