summaryrefslogtreecommitdiff
path: root/tests/test_export_colors.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_export_colors.py')
-rwxr-xr-xtests/test_export_colors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_export_colors.py b/tests/test_export_colors.py
index 5680dfc..09265c6 100755
--- a/tests/test_export_colors.py
+++ b/tests/test_export_colors.py
@@ -7,7 +7,7 @@ from pywal import util
# Import colors.
-COLORS = util.read_file("tests/test_file")
+COLORS = util.read_file("tests/test_files/test_file")
class TestExportColors(unittest.TestCase):
@@ -16,7 +16,7 @@ class TestExportColors(unittest.TestCase):
def test_save_colors(self):
"""> Export colors to a file."""
tmp_file = pathlib.Path("/tmp/test_file")
- colors = util.read_file("tests/test_file")
+ colors = util.read_file("tests/test_files/test_file")
export_colors.save_colors(colors, tmp_file, "plain colors")
result = tmp_file.is_file()
self.assertTrue(result)