summaryrefslogtreecommitdiff
path: root/tests/test_main.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-24 22:29:20 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-24 22:29:20 +1000
commitb9bf74f89b1d10d8f8e54863bf5442d612c85fdd (patch)
treef52225414b33ad7b33f17f090faf5954a9b8ab7a /tests/test_main.py
parent4fecce6e9c326970a73f8f3a599be8a02aeea381 (diff)
general: Rename constants
Diffstat (limited to 'tests/test_main.py')
-rw-r--r--tests/test_main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_main.py b/tests/test_main.py
index ad0f6fe..4dbe580 100644
--- a/tests/test_main.py
+++ b/tests/test_main.py
@@ -2,7 +2,7 @@
import unittest
from pywal import __main__
-from pywal.settings import __cache_dir__
+from pywal.settings import CACHE_DIR
class TestMain(unittest.TestCase):
@@ -12,7 +12,7 @@ class TestMain(unittest.TestCase):
"""> Test arg parsing (-c)"""
args = __main__.get_args(["-c"])
__main__.process_args(args)
- self.assertFalse((__cache_dir__ / "schemes").is_dir())
+ self.assertFalse((CACHE_DIR / "schemes").is_dir())
if __name__ == "__main__":