quick&dirty fix fixture tests that rely on tmppath fixture structure
This commit is contained in:
parent
c75bd08807
commit
5567c772cd
|
@ -739,7 +739,7 @@ class TestRequestBasic(object):
|
||||||
def test_function(request, farg):
|
def test_function(request, farg):
|
||||||
assert set(get_public_names(request.fixturenames)) == \
|
assert set(get_public_names(request.fixturenames)) == \
|
||||||
set(["tmpdir", "sarg", "arg1", "request", "farg",
|
set(["tmpdir", "sarg", "arg1", "request", "farg",
|
||||||
"tmpdir_factory"])
|
"tmp_path", "tmp_path_factory"])
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
reprec = testdir.inline_run()
|
reprec = testdir.inline_run()
|
||||||
|
|
Loading…
Reference in New Issue