From d4f5330f55aebc1bbd7d73c2c5c1c42b76b4dc62 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 29 Jul 2024 17:17:31 -0300 Subject: [PATCH] Fix typo in assertion for "I ran this command" --- tests/basic/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py index 73d038ee6..a46141add 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -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():