mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-17 23:08:18 +00:00
Replace asyncio.async with ensure_future because of deprecation, Fixes: #1269
This commit is contained in:
@ -70,6 +70,6 @@ def test_router_invalid_dynamips_path(project, manager, loop):
|
||||
|
||||
with pytest.raises(DynamipsError):
|
||||
router = Router("test", "00010203-0405-0607-0809-0a0b0c0d0e0e", project, manager)
|
||||
loop.run_until_complete(asyncio.async(router.create()))
|
||||
loop.run_until_complete(asyncio.ensure_future(router.create()))
|
||||
assert router.name == "test"
|
||||
assert router.id == "00010203-0405-0607-0809-0a0b0c0d0e0e"
|
||||
|
Reference in New Issue
Block a user