Skip to content
Snippets Groups Projects
Commit 9cc69c0c authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

Fix test on Python 3.6

parent a2a2a659
No related branches found
No related tags found
1 merge request!435Use asyncio subprocess interface in webservice code
...@@ -75,5 +75,5 @@ async def test_wait_on_transfer(tmp_path): ...@@ -75,5 +75,5 @@ async def test_wait_on_transfer(tmp_path):
content="""#!{}\nprint('user.status="dCache"')""".format(sys.executable) content="""#!{}\nprint('user.status="dCache"')""".format(sys.executable)
) )
with mock_getfattr: with mock_getfattr:
res = await wait_on_transfer(tmp_path, max_tries=1) res = await wait_on_transfer(str(tmp_path), max_tries=1)
assert res is True assert res is True
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment