Test: Correct output message of an undo test

This commit is contained in:
Renato Alves 2015-07-28 19:54:07 +01:00
parent 64e7939122
commit 0f8c995934

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("Command line modifications are not supported by this command.", err)
self.assertIn("The undo command does not allow further task modification.", err)
class TestBug634(TestCase):