From 91e48e19bca3cf46f6e403a320638246b3d1b215 Mon Sep 17 00:00:00 2001 From: Matthew Leonberger Date: Tue, 26 Sep 2017 08:58:44 +0900 Subject: Fix MacOS Unittests Tests now check which OS we are on and use the appropriate escapes Merge remote-tracking branch 'origin/hotfix/unittests' into hotfix/unittests --- tests/test_sequences.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_sequences.py b/tests/test_sequences.py index 6488298..2a993f5 100755 --- a/tests/test_sequences.py +++ b/tests/test_sequences.py @@ -5,7 +5,6 @@ import platform from pywal import sequences from pywal import util - # Import colors. COLORS = util.read_file_json("tests/test_files/test_file.json") @@ -17,6 +16,7 @@ class Testsequences(unittest.TestCase): """> Create special escape sequence.""" util.Color.alpha_num = 100 result = sequences.set_special(11, COLORS["special"]["background"]) + if platform.uname()[0] == "Darwin": self.assertEqual(result, "\033]Ph1F211E\033\\") else: @@ -26,6 +26,7 @@ class Testsequences(unittest.TestCase): """> Create special escape sequence with alpha.""" util.Color.alpha_num = 99 result = sequences.set_special(11, COLORS["special"]["background"]) + if platform.uname()[0] == "Darwin": self.assertEqual(result, "\033]Ph1F211E\033\\") else: @@ -34,6 +35,7 @@ class Testsequences(unittest.TestCase): def test_set_color(self): """> Create color escape sequence.""" result = sequences.set_color(11, COLORS["colors"]["color0"]) + if platform.uname()[0] == "Darwin": self.assertEqual(result, "\033]Pb1F211E\033\\") else: -- cgit v1.2.3