From bad740d32a289801a2df57bdad425225c532db41 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Tue, 28 Apr 2015 15:31:00 +0200 Subject: [PATCH] Fix test on Linux --- tests/modules/test_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/modules/test_manager.py b/tests/modules/test_manager.py index 9adbc888..b75927dd 100644 --- a/tests/modules/test_manager.py +++ b/tests/modules/test_manager.py @@ -109,7 +109,7 @@ def test_get_abs_image_path(qemu, tmpdir): def test_get_relative_image_path(qemu, tmpdir): - os.makedirs(str(tmpdir / "Qemu")) + os.makedirs(str(tmpdir / "QEMU")) path1 = str(tmpdir / "test1.bin") open(path1, 'w+').close()