summaryrefslogtreecommitdiff
path: root/tests/test_util.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-06-27 17:34:34 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-06-27 17:34:34 +1000
commitdbba94976cee6ab155ab6fc1bcf3344c6228c516 (patch)
tree8ad2d9b0b5073aba7602a116c19ddb7fd1e159fc /tests/test_util.py
parent9e2fb01222ddc06cc77675e8821eefe6c0101377 (diff)
tests: Move test files to other directory.
Diffstat (limited to 'tests/test_util.py')
-rwxr-xr-xtests/test_util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_util.py b/tests/test_util.py
index 6aeef9b..b1a396b 100755
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -10,12 +10,12 @@ class TestUtil(unittest.TestCase):
def test_read_file_start(self):
"""> Read colors from a file."""
- result = util.read_file("tests/test_file")
+ result = util.read_file("tests/test_files/test_file")
self.assertEqual(result[0], "#363442")
def test_read_file_end(self):
"""> Read colors from a file."""
- result = util.read_file("tests/test_file")
+ result = util.read_file("tests/test_files/test_file")
self.assertEqual(result[15], "#C9CFD0")
def test_save_file(self):