tests: Update tests.

This commit is contained in:
Dylan Araps
2018-01-17 09:09:34 +11:00
parent 0a71cb7b2b
commit 2601caead6
4 changed files with 9 additions and 3 deletions

View File

@ -14,7 +14,7 @@ class Testsequences(unittest.TestCase):
def test_set_special(self):
"""> Create special escape sequence."""
util.Color.alpha_num = 100
util.Color.alpha_num = "100"
result = sequences.set_special(11, COLORS["special"]["background"])
if platform.uname()[0] == "Darwin":
@ -24,7 +24,7 @@ class Testsequences(unittest.TestCase):
def test_set_special_alpha(self):
"""> Create special escape sequence with alpha."""
util.Color.alpha_num = 99
util.Color.alpha_num = "99"
result = sequences.set_special(11, COLORS["special"]["background"])
if platform.uname()[0] == "Darwin":