diff options
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/test_magic.py (renamed from tests/test_gen_colors.py) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_gen_colors.py b/tests/test_magic.py index 5b407af..673420c 100755 --- a/tests/test_gen_colors.py +++ b/tests/test_magic.py @@ -1,7 +1,7 @@ -"""Test gen functions.""" +"""Test imagemagick functions.""" import unittest -from pywal import gen_colors +from pywal import magic class TestGenColors(unittest.TestCase): @@ -9,7 +9,7 @@ class TestGenColors(unittest.TestCase): def test_gen_colors(self): """> Generate a colorscheme.""" - result = gen_colors.gen_colors("tests/test_files/test.jpg") + result = magic.gen_colors("tests/test_files/test.jpg") self.assertEqual(result[0], "#0F191A") |
