pull/638/head
Julien Duponchelle 8 years ago
parent d58bcddbcc
commit e6831c25e2
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -68,6 +68,9 @@ def test_import_project(async_run, tmpdir, controller):
def test_import_upgrade(async_run, tmpdir, controller):
"""
Topology made for previous GNS3 version are upgraded during the process
"""
project_id = str(uuid.uuid4())
topology = {

@ -207,7 +207,7 @@ def test_write_file(http_controller, tmpdir, project):
def test_import(http_controller, tmpdir, controller):
with zipfile.ZipFile(str(tmpdir / "test.zip"), 'w') as myzip:
myzip.writestr("project.gns3", b'{"version": "2.0.0", "name": "test"}')
myzip.writestr("project.gns3", b'{"project_id": "c6992992-ac72-47dc-833b-54aa334bcd05", "version": "2.0.0", "name": "test"}')
myzip.writestr("demo", b"hello")
project_id = str(uuid.uuid4())

Loading…
Cancel
Save