From f01a6dcaaf0f3886ac028ebd3890bf74e94df38a Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 9 Nov 2015 12:23:50 +0100 Subject: [PATCH] Fix qemu tests --- tests/handlers/api/test_qemu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/handlers/api/test_qemu.py b/tests/handlers/api/test_qemu.py index 01d6c1bc..b6b7199a 100644 --- a/tests/handlers/api/test_qemu.py +++ b/tests/handlers/api/test_qemu.py @@ -26,7 +26,7 @@ from gns3server.config import Config @pytest.fixture def fake_qemu_bin(): - bin_path = os.path.join(os.environ["PATH"], "qemu_x86_64") + bin_path = os.path.join(os.environ["PATH"], "qemu-system-x86_64") with open(bin_path, "w+") as f: f.write("1") os.chmod(bin_path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)