Skip to content

Commit beb9ee2

Browse files
committed
Fix py.test setup message
1 parent 20633d4 commit beb9ee2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/supervisor/test_qemu_instance.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ async def test_create_qemu_instance(mocker):
6161
mocker.patch.object(settings, "USE_JAILER", False)
6262

6363
if not settings.FAKE_INSTANCE_BASE.exists():
64-
pytest.xfail("Test Runtime not setup. run `cd runtimes/instance-rootfs && sudo ./create-debian-12-disk.sh`")
64+
pytest.xfail(
65+
"Test Runtime not setup. run `cd runtimes/instance-rootfs && sudo ./create-debian-12-qemu-disk.sh`"
66+
)
6567

6668
logging.basicConfig(level=logging.DEBUG)
6769

@@ -121,7 +123,7 @@ async def test_create_qemu_instance_online(mocker):
121123

122124
if not settings.FAKE_INSTANCE_BASE.exists():
123125
pytest.xfail(
124-
"Test instance disk {} not setup. run `cd runtimes/instance-rootfs && sudo ./create-debian-12-disk.sh` ".format(
126+
"Test instance disk {} not setup. run `cd runtimes/instance-rootfs && sudo ./create-debian-12-qemu-disk.sh` ".format(
125127
settings.FAKE_QEMU_INSTANCE_BASE
126128
)
127129
)

0 commit comments

Comments
 (0)