Test: Fixed error message

This commit is contained in:
Paul Beckingham 2015-07-28 16:57:40 -04:00
parent 1b764e1641
commit 387c981b6d

View file

@ -65,7 +65,7 @@ class TestUndo(TestCase):
"""Verify that en-passant changes during undo are an error"""
self.t("add one")
code, out, err = self.t.runError("undo +tag")
self.assertIn("The undo command does not allow further task modification.", err)
self.assertIn("Command line modifications are not supported by this command.", err)
class TestBug634(TestCase):