summaryrefslogtreecommitdiff
path: root/tests/test_export.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-09 23:57:53 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-09 23:57:53 +1000
commitb5806287d303fe0ee36e5930c24f488b08c3c441 (patch)
tree4c995ce71a3348bb96737a3a5849899df436337e /tests/test_export.py
parent1d63b05e408d9f63e0147cdd9b1988ef63100eb9 (diff)
export: Add wallpaper to export files,
Diffstat (limited to 'tests/test_export.py')
-rwxr-xr-xtests/test_export.py6
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__":