Test: Modified error message expectation

This commit is contained in:
Paul Beckingham 2015-09-06 14:59:43 -04:00
parent d60a2f9954
commit b7c7d782e0

View file

@ -65,7 +65,7 @@ class TestUndo(TestCase):
"""Verify that en-passant changes during undo are an error""" """Verify that en-passant changes during undo are an error"""
self.t("add one") self.t("add one")
code, out, err = self.t.runError("undo +tag") 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): class TestBug634(TestCase):