aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDylan Araps <[email protected]>2017-07-23 17:44:55 +1000
committerDylan Araps <[email protected]>2017-07-23 17:44:55 +1000
commitd2ab5077e78f58fbe4c059c561553f4b40514bbc (patch)
treef22e646795f7859d8f003b7ea64f8ad3dfdcc296 /tests
parentoptimization: Speed up image processing by 5-6x resizing images before grabbi... (diff)
downloadpywal-d2ab5077e78f58fbe4c059c561553f4b40514bbc.tar.xz
pywal-d2ab5077e78f58fbe4c059c561553f4b40514bbc.zip
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__":