summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-23 17:44:55 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-23 17:44:55 +1000
commitd2ab5077e78f58fbe4c059c561553f4b40514bbc (patch)
treef22e646795f7859d8f003b7ea64f8ad3dfdcc296 /tests
parent38744ecf3e410d73bd69807e8912e4af33643843 (diff)
tests: Fix test
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_colors.py2
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__":