diff options
| author | Dylan Araps <[email protected]> | 2017-06-27 18:18:17 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-06-27 18:18:17 +1000 |
| commit | bb81f1a43d4bc88d2bf1935a54c148302dd96d14 (patch) | |
| tree | 69a657614c21d36f365a518fe66856bd02205454 /tests | |
| parent | General: Rename file to match others. (diff) | |
| download | pywal-bb81f1a43d4bc88d2bf1935a54c148302dd96d14.tar.xz pywal-bb81f1a43d4bc88d2bf1935a54c148302dd96d14.zip | |
tests: Remove unused line.
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/test_export_colors.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_export_colors.py b/tests/test_export_colors.py index 5ca04d9..3e87f95 100755 --- a/tests/test_export_colors.py +++ b/tests/test_export_colors.py @@ -16,8 +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_files/test_file") - export_colors.save_colors(colors, tmp_file, "plain colors") + export_colors.save_colors(COLORS, tmp_file, "plain colors") result = tmp_file.is_file() self.assertTrue(result) |