From ed3f5ed673a1144ccc4de2493a1f4eae990f8678 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Wed, 31 Jan 2024 12:54:47 -0500 Subject: [PATCH] fix test_fixtures.py --- autotest/test_fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotest/test_fixtures.py b/autotest/test_fixtures.py index f959d0c..dcd7122 100644 --- a/autotest/test_fixtures.py +++ b/autotest/test_fixtures.py @@ -186,7 +186,7 @@ def test_keep_session_scoped_tmpdir(tmp_path, arg, request): ] assert pytest.main(args) == ExitCode.OK assert Path( - tmp_path / f"{request.session.name}0" / test_keep_fname + tmp_path / f"{request.config.rootpath.name}0" / test_keep_fname ).is_file()