From 4721ffe512c326d26820510ead067e405cf225c8 Mon Sep 17 00:00:00 2001 From: Daniel Rainer Date: Sat, 7 Jun 2025 18:54:05 +0200 Subject: [PATCH] Remove unused variables --- tests/test_driver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_driver.py b/tests/test_driver.py index 49b928e76..4a02c05bc 100755 --- a/tests/test_driver.py +++ b/tests/test_driver.py @@ -50,7 +50,7 @@ def makeenv(script_path, home, test_helper_path): if test_helper_path: thp = Path(test_helper_path) if not os.path.exists(thp / "fish_test_helper"): - comp = subprocess.run( + subprocess.run( [ "cc", script_path / "fish_test_helper.c", @@ -60,7 +60,7 @@ def makeenv(script_path, home, test_helper_path): ) shutil.copy(thp / "fish_test_helper", home + "/fish_test_helper") else: - comp = subprocess.run( + subprocess.run( [ "cc", script_path / "fish_test_helper.c",