mirror of
https://github.com/GNS3/gns3-server
synced 2025-01-28 17:01:00 +00:00
Fix tests after updating error message when busybox is not installed.
This commit is contained in:
parent
448b94f701
commit
2609849507
@ -238,7 +238,7 @@ async def test_install_busybox_dynamic_linked():
|
|||||||
with pytest.raises(DockerError) as e:
|
with pytest.raises(DockerError) as e:
|
||||||
dst_dir = Docker.resources_path()
|
dst_dir = Docker.resources_path()
|
||||||
await Docker.install_busybox(dst_dir)
|
await Docker.install_busybox(dst_dir)
|
||||||
assert str(e.value) == "No busybox executable could be found"
|
assert str(e.value) == "No busybox executable could be found, please install busybox (apt install busybox-static on Debian/Ubuntu) and make sure it is in your PATH"
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
@ -249,4 +249,4 @@ async def test_install_busybox_no_executables():
|
|||||||
with pytest.raises(DockerError) as e:
|
with pytest.raises(DockerError) as e:
|
||||||
dst_dir = Docker.resources_path()
|
dst_dir = Docker.resources_path()
|
||||||
await Docker.install_busybox(dst_dir)
|
await Docker.install_busybox(dst_dir)
|
||||||
assert str(e.value) == "No busybox executable could be found"
|
assert str(e.value) == "No busybox executable could be found, please install busybox (apt install busybox-static on Debian/Ubuntu) and make sure it is in your PATH"
|
||||||
|
Loading…
Reference in New Issue
Block a user