Fix more tests

This commit is contained in:
grossmj
2023-01-10 11:09:27 +08:00
parent e9c95ff299
commit eb3fc1bb3a
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ from unittest.mock import patch, MagicMock
def fake_qemu_img_binary(tmpdir):
if sys.platform.startswith("win"):
bin_path = str(tmpdir / "qemu-img.exe")
bin_path = str(tmpdir / "qemu-img.EXE")
else:
bin_path = str(tmpdir / "qemu-img")
with open(bin_path, "w+") as f: