mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-01 04:38:12 +00:00
Fix tests.
This commit is contained in:
parent
630afc5469
commit
0df997d232
@ -230,8 +230,8 @@ def test_list_images(loop, qemu, tmpdir):
|
|||||||
|
|
||||||
with patch("gns3server.utils.images.default_images_directory", return_value=str(tmpdir)):
|
with patch("gns3server.utils.images.default_images_directory", return_value=str(tmpdir)):
|
||||||
assert loop.run_until_complete(qemu.list_images()) == [
|
assert loop.run_until_complete(qemu.list_images()) == [
|
||||||
{"filename": "a.qcow2", "path": "a.qcow2", "md5sum": "c4ca4238a0b923820dcc509a6f75849b", "filesize": 1},
|
{"filename": "b.qcow2", "path": "b.qcow2", "md5sum": "c4ca4238a0b923820dcc509a6f75849b", "filesize": 1},
|
||||||
{"filename": "b.qcow2", "path": "b.qcow2", "md5sum": "c4ca4238a0b923820dcc509a6f75849b", "filesize": 1}
|
{"filename": "a.qcow2", "path": "a.qcow2", "md5sum": "c4ca4238a0b923820dcc509a6f75849b", "filesize": 1}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
@ -250,8 +250,8 @@ def test_list_images_recursives(loop, qemu, tmpdir):
|
|||||||
with patch("gns3server.utils.images.default_images_directory", return_value=str(tmpdir)):
|
with patch("gns3server.utils.images.default_images_directory", return_value=str(tmpdir)):
|
||||||
|
|
||||||
assert loop.run_until_complete(qemu.list_images()) == [
|
assert loop.run_until_complete(qemu.list_images()) == [
|
||||||
{"filename": "a.qcow2", "path": "a.qcow2", "md5sum": "c4ca4238a0b923820dcc509a6f75849b", "filesize": 1},
|
|
||||||
{"filename": "b.qcow2", "path": "b.qcow2", "md5sum": "c4ca4238a0b923820dcc509a6f75849b", "filesize": 1},
|
{"filename": "b.qcow2", "path": "b.qcow2", "md5sum": "c4ca4238a0b923820dcc509a6f75849b", "filesize": 1},
|
||||||
|
{"filename": "a.qcow2", "path": "a.qcow2", "md5sum": "c4ca4238a0b923820dcc509a6f75849b", "filesize": 1},
|
||||||
{"filename": "c.qcow2", "path": force_unix_path(os.path.sep.join(["c", "c.qcow2"])), "md5sum": "c4ca4238a0b923820dcc509a6f75849b", "filesize": 1}
|
{"filename": "c.qcow2", "path": force_unix_path(os.path.sep.join(["c", "c.qcow2"])), "md5sum": "c4ca4238a0b923820dcc509a6f75849b", "filesize": 1}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user