diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-24 22:29:20 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-24 22:29:20 +1000 |
| commit | b9bf74f89b1d10d8f8e54863bf5442d612c85fdd (patch) | |
| tree | f52225414b33ad7b33f17f090faf5954a9b8ab7a /tests | |
| parent | 4fecce6e9c326970a73f8f3a599be8a02aeea381 (diff) | |
general: Rename constants
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_main.py | 4 |
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__": |
