From 387c981b6d679ba55aa0a9b9ced096a87405e1cd Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 28 Jul 2015 16:57:40 -0400 Subject: [PATCH] Test: Fixed error message --- test/undo.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/undo.t b/test/undo.t index d6ad391e5..335d6b347 100755 --- a/test/undo.t +++ b/test/undo.t @@ -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):