mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
Fix tests on case sensitive file system
This commit is contained in:
parent
cdcdba7411
commit
c538ec5937
@ -27,13 +27,12 @@ from unittest.mock import MagicMock
|
|||||||
from tests.utils import AsyncioMagicMock, AsyncioBytesIO
|
from tests.utils import AsyncioMagicMock, AsyncioBytesIO
|
||||||
|
|
||||||
from gns3server.controller.project import Project
|
from gns3server.controller.project import Project
|
||||||
from gns3server.controller.compute import Compute
|
|
||||||
from gns3server.controller.export_project import export_project, _filter_files
|
from gns3server.controller.export_project import export_project, _filter_files
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def project(controller):
|
def project(controller):
|
||||||
p = Project(controller=controller, name="Test")
|
p = Project(controller=controller, name="test")
|
||||||
p.dump = MagicMock()
|
p.dump = MagicMock()
|
||||||
return p
|
return p
|
||||||
|
|
||||||
@ -179,7 +178,7 @@ def test_export_disallow_running(tmpdir, project, node, async_run):
|
|||||||
|
|
||||||
node._status = "started"
|
node._status = "started"
|
||||||
with pytest.raises(aiohttp.web.HTTPConflict):
|
with pytest.raises(aiohttp.web.HTTPConflict):
|
||||||
z = async_run(export_project(project, str(tmpdir)))
|
async_run(export_project(project, str(tmpdir)))
|
||||||
|
|
||||||
|
|
||||||
def test_export_disallow_some_type(tmpdir, project, async_run):
|
def test_export_disallow_some_type(tmpdir, project, async_run):
|
||||||
|
Loading…
Reference in New Issue
Block a user