From b7c7d782e0771ecfafdf968e1b3dedaeb901d6f0 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 6 Sep 2015 14:59:43 -0400 Subject: [PATCH] Test: Modified error message expectation --- test/undo.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/undo.t b/test/undo.t index 79e94f859..6104ca8c7 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("Command line modifications are not supported by this command.", err) + self.assertIn("The 'undo' command does not allow '+tag'.", err) class TestBug634(TestCase):