1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-05-29 04:08:50 +00:00

Remove debug message in tests

This commit is contained in:
grossmj 2025-05-13 20:47:38 +02:00
parent 53eac771d6
commit 2bf3eff143
No known key found for this signature in database
GPG Key ID: 1E7DD6DBB53FF3D7

View File

@ -776,7 +776,6 @@ async def test_build_command_with_virtio_net_pci_adapter(vm):
vm._adapter_type = "virtio-net-pci" vm._adapter_type = "virtio-net-pci"
with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()): with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()):
cmd = await vm._build_command() cmd = await vm._build_command()
print(cmd)
assert "virtio-net-pci,mac=00:00:ab:0e:0f:09,speed=10000,duplex=full,bus=pci-bridge1,addr=0x00,netdev=gns3-0" in cmd assert "virtio-net-pci,mac=00:00:ab:0e:0f:09,speed=10000,duplex=full,bus=pci-bridge1,addr=0x00,netdev=gns3-0" in cmd