From 30361aa685f5dba0a8b60293eaa1b6bdbe2d0017 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 24 Feb 2025 09:46:29 -0800 Subject: [PATCH] fix: Remove unused 'result' variable in test_pipe_editor_with_shell_script --- tests/basic/test_editor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/basic/test_editor.py b/tests/basic/test_editor.py index d20a02652..1a29cf449 100644 --- a/tests/basic/test_editor.py +++ b/tests/basic/test_editor.py @@ -103,8 +103,8 @@ def test_pipe_editor_with_shell_script(): try: # Use the script as editor and verify it's called with .md file - result = pipe_editor("test content", suffix="md", editor=script_path) - + pipe_editor("test content", suffix="md", editor=script_path) + # Read the log file to see what arguments were passed with open(f"{script_path}.log") as f: called_args = f.read().strip()