From 9a7bdcb6db582286c3a37f71791b47b0a2fcb460 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 21 Nov 2024 06:36:11 -0800 Subject: [PATCH] style: Fix linter warnings in test_commands.py --- 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 726235d7e..b4b0e304d 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -1069,7 +1069,7 @@ class TestCommands(TestCase): # Test the cmd_run method with a command that should not raise an error commands.cmd_run("exit 1", add_on_nonzero_exit=True) - + # Check that the output was added to cur_messages self.assertTrue(any("exit 1" in msg["content"] for msg in coder.cur_messages))