From 00962f9d5da83533f0762568f214668be5bae1f6 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 31 May 2024 14:29:07 +0200 Subject: [PATCH] fix pytest_report_header, fixes #8232 --- src/borg/testsuite/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/testsuite/conftest.py b/src/borg/testsuite/conftest.py index 7fb26f590..aa45da4ea 100644 --- a/src/borg/testsuite/conftest.py +++ b/src/borg/testsuite/conftest.py @@ -33,7 +33,7 @@ def clean_env(tmpdir_factory, monkeypatch): monkeypatch.setenv("BORG_TESTONLY_WEAKEN_KDF", "1") -def pytest_report_header(config, startdir): +def pytest_report_header(config, start_path): tests = { "BSD flags": has_lchflags, "fuse2": has_llfuse,