1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-08-04 12:56:16 +00:00

Fix tests

This commit is contained in:
grossmj 2025-05-14 16:56:46 +02:00
parent df576f0668
commit f2080979a1
No known key found for this signature in database
GPG Key ID: 1E7DD6DBB53FF3D7

View File

@ -267,7 +267,7 @@ class QemuVM(BaseNode):
self._platform = "i386"
else:
self._platform = re.sub(r'^qemu-system-(\w+).*$', r'\1', qemu_bin, flags=re.IGNORECASE)
if self._platform.split(".")[0] not in QEMU_PLATFORMS:
if self._platform.split(".")[0] not in QemuPlatform:
raise QemuError(f"Platform {self._platform} is unknown")
log.info(f'QEMU VM "{self._name}" [{self._name}] has set the QEMU path to {qemu_path}')