mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-28 11:18:11 +00:00
Fix tests on python 3.4 (#1046)
This commit is contained in:
parent
54e80d68f8
commit
59488e8064
@ -287,7 +287,7 @@ class GNS3VM:
|
|||||||
yield from engine.start()
|
yield from engine.start()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
yield from self._controller.delete_compute("vm")
|
yield from self._controller.delete_compute("vm")
|
||||||
log.error("Can't start the GNS3 VM: {}", str(e))
|
log.error("Can't start the GNS3 VM: {}".format(str(e)))
|
||||||
yield from compute.update(name="GNS3 VM ({})".format(engine.vmname))
|
yield from compute.update(name="GNS3 VM ({})".format(engine.vmname))
|
||||||
raise e
|
raise e
|
||||||
yield from compute.update(name="GNS3 VM ({})".format(engine.vmname),
|
yield from compute.update(name="GNS3 VM ({})".format(engine.vmname),
|
||||||
|
@ -70,7 +70,10 @@ class AsyncioMagicMock(unittest.mock.MagicMock):
|
|||||||
"""
|
"""
|
||||||
Magic mock returning coroutine
|
Magic mock returning coroutine
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
__class__ = types.CoroutineType
|
__class__ = types.CoroutineType
|
||||||
|
except AttributeError: # Not supported with Python 3.4
|
||||||
|
__class__ = types.GeneratorType
|
||||||
|
|
||||||
def __init__(self, return_value=None, return_values=None, **kwargs):
|
def __init__(self, return_value=None, return_values=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user