From 5567c772cd23ebab01cfe642e2363bc1661068a3 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Sun, 27 Jan 2019 14:19:23 +0100 Subject: [PATCH] quick&dirty fix fixture tests that rely on tmppath fixture structure --- testing/python/fixture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/python/fixture.py b/testing/python/fixture.py index 196b28c51..3d557cec8 100644 --- a/testing/python/fixture.py +++ b/testing/python/fixture.py @@ -739,7 +739,7 @@ class TestRequestBasic(object): def test_function(request, farg): assert set(get_public_names(request.fixturenames)) == \ set(["tmpdir", "sarg", "arg1", "request", "farg", - "tmpdir_factory"]) + "tmp_path", "tmp_path_factory"]) """ ) reprec = testdir.inline_run()