aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-pywal/fix-tmp-dir.patch
blob: 61fa9c099c4754f932f16e62beaabeb60f6867b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -48,7 +48,7 @@
 
     def test_create_dir(self):
         """> Create a directory."""
-        tmp_dir = "/tmp/test_dir"
+        tmp_dir = "test_dir"
         util.create_dir(tmp_dir)
         self.assertTrue(os.path.isdir(tmp_dir))
         os.rmdir(tmp_dir)