We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 919ddf4 commit a87e89cCopy full SHA for a87e89c
tests/test_clang_format.py
@@ -49,5 +49,5 @@ def test_run_clang_format_invalid(args, expected_retval, tmp_path):
49
def test_run_clang_format_dry_run(args, expected_retval, tmp_path):
50
# copy test file to tmp_path to prevent modifying repo data
51
test_file = tmp_path / "main.c"
52
- ret, output = run_clang_format(['--dry-run', str(test_file)])
+ ret, _ = run_clang_format(['--dry-run', str(test_file)])
53
assert ret == -1 # Dry run should not fail
0 commit comments