From 6fa87e97377f78324d2eafb34eeeff7af187fee8 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 15 Mar 2017 18:29:02 +0100 Subject: [PATCH] fixing inexistant ~/.config --- tests/test_import.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_import.py b/tests/test_import.py index 995ff7a..7a63921 100644 --- a/tests/test_import.py +++ b/tests/test_import.py @@ -90,6 +90,7 @@ class TestImport(unittest.TestCase): dotfile2, content2 = create_random_file(os.path.expanduser('~')) self.addCleanup(clean, dotfile2) homeconf = os.path.join(os.path.expanduser('~'), '.config') + os.mkdir(homeconf) dotconfig = os.path.join(homeconf, get_string(5)) create_dir(dotconfig) self.addCleanup(clean, dotconfig)