diff options
| author | Dylan Araps <[email protected]> | 2017-07-10 00:09:11 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-10 00:09:11 +1000 |
| commit | a6f99791ce79f0eed40396e8f3462413ce66554c (patch) | |
| tree | 77bd9cc12991137d6449c7a3cc1e492363c99ffb /tests/test_export.py | |
| parent | general: Update (diff) | |
| parent | export: Add wallpaper to export files, (diff) | |
| download | pywal-a6f99791ce79f0eed40396e8f3462413ce66554c.tar.xz pywal-a6f99791ce79f0eed40396e8f3462413ce66554c.zip | |
Merge pull request #42 from dylanaraps/wallpaper
export: Add wallpaper to export files.
Diffstat (limited to 'tests/test_export.py')
| -rwxr-xr-x | tests/test_export.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_export.py b/tests/test_export.py index 7204f48..167d3ed 100755 --- a/tests/test_export.py +++ b/tests/test_export.py @@ -27,9 +27,9 @@ class TestExportColors(unittest.TestCase): self.assertTrue(result) content = pathlib.Path("/tmp/test_template").read_text() - self.assertEqual(content, '\n'.join(["test1 #3A5130", - "test2 #3A5130", - "test3 58,81,48", ""])) + self.assertEqual(content, '\n'.join(["test1 #1F211E", + "test2 #1F211E", + "test3 31,33,30", ""])) if __name__ == "__main__": |