Skip to content

Commit 00cd0bb

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 73a4dfc commit 00cd0bb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_integration.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,9 @@ def test_clang_format_google_style_matches_good_c(unformatted_file):
175175
@pytest.mark.parametrize("verbose_flag", ["--verbose", "-v"])
176176
def test_clang_format_verbose_flag_succeeds(verbose_flag, unformatted_file):
177177
"""Both --verbose and -v flags must be accepted and not break formatting."""
178-
ret, output = run_clang_format([verbose_flag, "--style=Google", str(unformatted_file)])
178+
ret, output = run_clang_format(
179+
[verbose_flag, "--style=Google", str(unformatted_file)]
180+
)
179181

180182
assert ret == 0
181183
assert isinstance(output, str)

0 commit comments

Comments
 (0)