From c076275bd02e3777e7fc307a7d58f9af9e993124 Mon Sep 17 00:00:00 2001 From: grossmj Date: Thu, 9 May 2024 16:01:55 +0700 Subject: [PATCH] Fix test create image with not supported characters by filesystem. Fixes #2375 --- tests/compute/qemu/test_qemu_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/compute/qemu/test_qemu_manager.py b/tests/compute/qemu/test_qemu_manager.py index 7a14601f..6e186d60 100644 --- a/tests/compute/qemu/test_qemu_manager.py +++ b/tests/compute/qemu/test_qemu_manager.py @@ -195,6 +195,7 @@ async def test_create_image_with_not_supported_characters_by_filesystem(tmpdir, # patching os.makedirs is necessary as it depends on already mocked os.path.exists with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()) as process, \ + patch("gns3server.compute.qemu.Qemu._init_config_disk", return_value=MagicMock()), \ patch("gns3server.compute.qemu.Qemu.get_images_directory", return_value=str(tmpdir)), \ patch("os.path.exists", side_effect=UnicodeEncodeError('error', u"", 1, 2, 'Emulated Unicode Err')),\ patch("os.makedirs"):