From bf4550bf784d75e24f9d22a9e8ede5f0cd45ef45 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sun, 13 Sep 2020 23:23:08 +0930 Subject: [PATCH] Fix tests. Ref https://github.com/GNS3/gns3-gui/issues/3047 --- tests/compute/qemu/test_qemu_vm.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/compute/qemu/test_qemu_vm.py b/tests/compute/qemu/test_qemu_vm.py index 7df7df61..6067a205 100644 --- a/tests/compute/qemu/test_qemu_vm.py +++ b/tests/compute/qemu/test_qemu_vm.py @@ -494,7 +494,7 @@ async def test_build_command(vm, fake_qemu_binary): "-m", "256M", "-smp", - "cpus=1", + "cpus=1,sockets=1", "-boot", "order=c", "-uuid", @@ -544,7 +544,7 @@ async def test_build_command_kvm(linux_platform, vm, fake_qemu_binary): "-m", "256M", "-smp", - "cpus=1", + "cpus=1,sockets=1", "-enable-kvm", "-boot", "order=c", @@ -580,7 +580,7 @@ async def test_build_command_kvm_2_4(linux_platform, vm, fake_qemu_binary): "-m", "256M", "-smp", - "cpus=1", + "cpus=1,sockets=1", "-enable-kvm", "-machine", "smm=off", @@ -626,7 +626,7 @@ async def test_build_command_two_adapters(vm, fake_qemu_binary): "-m", "256M", "-smp", - "cpus=1", + "cpus=1,sockets=1", "-boot", "order=c", "-uuid",