Skip to content

Commit bacda95

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9c3ffc8 commit bacda95

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

tests/integration/test_main.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -936,17 +936,16 @@ def test_action__pull_request__diff_too_large(
936936
output_file,
937937
summary_file,
938938
git,
939-
get_logs
939+
get_logs,
940940
):
941941
"""Test that when the diff is too large, a warning is shown in the comment."""
942942
session.register("GET", "/repos/py-cov-action/foobar")(
943943
json={"default_branch": "main", "visibility": "public"}
944944
)
945945
# No existing badge in this test
946-
session.register(
947-
"GET",
948-
"/repos/py-cov-action/foobar/contents/data.json"
949-
)(status_code=404)
946+
session.register("GET", "/repos/py-cov-action/foobar/contents/data.json")(
947+
status_code=404
948+
)
950949

951950
# Who am I
952951
session.register("GET", "/user")(json={"login": "foo"})

0 commit comments

Comments
 (0)