mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-14 13:28:12 +00:00
Fix tests to work with new version of aiohttp (>= 3.0)
This commit is contained in:
@ -373,6 +373,7 @@ def test_export_images_from_vm(tmpdir, project, async_run, controller):
|
||||
mock_response.status = 200
|
||||
compute.download_file = AsyncioMagicMock(return_value=mock_response)
|
||||
|
||||
|
||||
mock_response = AsyncioMagicMock()
|
||||
mock_response.content = AsyncioBytesIO()
|
||||
async_run(mock_response.content.write(b"IMAGE"))
|
||||
@ -380,6 +381,7 @@ def test_export_images_from_vm(tmpdir, project, async_run, controller):
|
||||
mock_response.status = 200
|
||||
compute.download_image = AsyncioMagicMock(return_value=mock_response)
|
||||
|
||||
|
||||
project._project_created_on_compute.add(compute)
|
||||
|
||||
path = project.path
|
||||
|
Reference in New Issue
Block a user