Fix typo in assertion for "I ran this command"

This commit is contained in:
Paul Gauthier (aider) 2024-07-29 17:17:31 -03:00
parent 11facfe4d5
commit d4f5330f55

View file

@ -549,7 +549,7 @@ class TestCommands(TestCase):
# Test the cmd_run method with a command that should not raise an error
result = commands.cmd_run("exit 1", add_on_nonzero_exit=True)
self.assertTrue("I ran this comand" in result)
self.assertTrue("I ran this command" in result)
def test_cmd_add_drop_untracked_files(self):
with GitTemporaryDirectory():