Test: Propagated typo fix to tests
This commit is contained in:
@@ -86,7 +86,7 @@ class TestTaskEdit(TestCase):
|
|||||||
def test_command_line_modifications(self):
|
def test_command_line_modifications(self):
|
||||||
"""Verify that the 'edit' command does not accept command line modifications"""
|
"""Verify that the 'edit' command does not accept command line modifications"""
|
||||||
code, out, err = self.t.runError("1 edit +foo")
|
code, out, err = self.t.runError("1 edit +foo")
|
||||||
self.assertIn("Command line modifications are not support by this command.", err)
|
self.assertIn("Command line modifications are not supported by this command.", err)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|||||||
@@ -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("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):
|
class TestBug634(TestCase):
|
||||||
|
|||||||
Reference in New Issue
Block a user