diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-23 17:44:55 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-23 17:44:55 +1000 |
| commit | d2ab5077e78f58fbe4c059c561553f4b40514bbc (patch) | |
| tree | f22e646795f7859d8f003b7ea64f8ad3dfdcc296 | |
| parent | 38744ecf3e410d73bd69807e8912e4af33643843 (diff) | |
tests: Fix test
| -rwxr-xr-x | tests/test_colors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_colors.py b/tests/test_colors.py index e83c54d..0ce5035 100755 --- a/tests/test_colors.py +++ b/tests/test_colors.py @@ -10,7 +10,7 @@ class TestGenColors(unittest.TestCase): def test_gen_colors(self): """> Generate a colorscheme.""" result = colors.get("tests/test_files/test.jpg") - self.assertEqual(result["colors"]["color0"], "#0F191A") + self.assertEqual(result["colors"]["color0"], "#0D191B") if __name__ == "__main__": |
