From 4bddbf858b19df7a7d268457dbce0caf2c4f075e Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 11 Apr 2016 23:06:16 -0400 Subject: [PATCH] Tests: Fixed test descriptions --- test/continue.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/continue.t b/test/continue.t index 3eeeef4b..aa9bce49 100755 --- a/test/continue.t +++ b/test/continue.t @@ -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)