diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-01-17 09:09:34 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-01-17 09:09:34 +1100 |
| commit | 2601caead656b41cc69bc2c1d2b1a11c7edf2e2b (patch) | |
| tree | 93be93ccd957adbc5eab1aca04049450e07407b5 /tests/test_sequences.py | |
| parent | 0a71cb7b2b797a64d7798dd539a37d3a0fb7aed7 (diff) | |
tests: Update tests.
Diffstat (limited to 'tests/test_sequences.py')
| -rwxr-xr-x | tests/test_sequences.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_sequences.py b/tests/test_sequences.py index 8e4dc74..f5680eb 100755 --- a/tests/test_sequences.py +++ b/tests/test_sequences.py @@ -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": |
