Tests: Fixed quiet tests after TI-47

This commit is contained in:
Paul Beckingham 2016-09-23 19:48:28 -04:00
parent 88960d5bee
commit 067643c64a

View file

@ -58,10 +58,10 @@ class TestQuietMode(TestCase):
def test_default(self):
"""Default command should obey :quiet hint"""
code, out, err = self.t.runError("")
code, out, err = self.t("")
self.assertIn('There is no active time tracking.', out)
code, out, err = self.t.runError(":quiet")
code, out, err = self.t(":quiet")
self.assertNotIn('There is no active time tracking.', out)
def test_stop(self):