quick&dirty fix fixture tests that rely on tmppath fixture structure

This commit is contained in:
Ronny Pfannschmidt 2019-01-27 14:19:23 +01:00
parent c75bd08807
commit 5567c772cd
1 changed files with 1 additions and 1 deletions

View File

@ -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()