Skip to content

Commit 3e613cd

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 49a89c9 commit 3e613cd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

testing/test_git.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -498,13 +498,14 @@ def test_git_getdate_badgit(
498498
assert git_wd.get_head_date() is None
499499

500500

501-
502501
def test_git_getdate_git_2_45_0_plus(
503502
wd: WorkDir, caplog: pytest.LogCaptureFixture, monkeypatch: pytest.MonkeyPatch
504503
) -> None:
505504
wd.commit_testfile()
506505
git_wd = git.GitWorkdir(wd.cwd)
507-
fake_date_result = CompletedProcess(args=[], stdout="2024-04-30T22:33:10Z", stderr="", returncode=0)
506+
fake_date_result = CompletedProcess(
507+
args=[], stdout="2024-04-30T22:33:10Z", stderr="", returncode=0
508+
)
508509
with patch.object(
509510
git,
510511
"run_git",

0 commit comments

Comments
 (0)