mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-28 11:18:11 +00:00
Fix docker test for no free interface
This commit is contained in:
parent
fa769cd41d
commit
5898b86dfc
@ -740,7 +740,7 @@ def test_add_ubridge_connection_no_free_interface(loop, vm):
|
||||
with pytest.raises(DockerError):
|
||||
|
||||
# We create fake ethernet interfaces for docker
|
||||
interfaces = ["veth-gns3-ext{}".format(index) for index in range(128)]
|
||||
interfaces = ["veth-gns3-ext{}".format(index) for index in range(4096)]
|
||||
|
||||
with patch("psutil.net_if_addrs", return_value=interfaces):
|
||||
loop.run_until_complete(asyncio.async(vm._add_ubridge_connection(nio, 0, 42)))
|
||||
|
Loading…
Reference in New Issue
Block a user