Skip to content

Commit a87e89c

Browse files
committed
Replace the unused local variable output with _
1 parent 919ddf4 commit a87e89c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_clang_format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ def test_run_clang_format_invalid(args, expected_retval, tmp_path):
4949
def test_run_clang_format_dry_run(args, expected_retval, tmp_path):
5050
# copy test file to tmp_path to prevent modifying repo data
5151
test_file = tmp_path / "main.c"
52-
ret, output = run_clang_format(['--dry-run', str(test_file)])
52+
ret, _ = run_clang_format(['--dry-run', str(test_file)])
5353
assert ret == -1 # Dry run should not fail

0 commit comments

Comments
 (0)