summaryrefslogtreecommitdiff
path: root/tests/test_sequences.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-23 23:31:16 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-23 23:31:16 +1000
commitb14081625c3d5fac8c339db30832f98b75e40691 (patch)
treeaeea26ba0a5c00ded5804f3f5ae679f4edfb7a7a /tests/test_sequences.py
parent6677cad478c873c4776a385f2423a9ea4b1dcf28 (diff)
tests: Implement all arguments.
Diffstat (limited to 'tests/test_sequences.py')
-rwxr-xr-xtests/test_sequences.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_sequences.py b/tests/test_sequences.py
index bd03516..fe88909 100755
--- a/tests/test_sequences.py
+++ b/tests/test_sequences.py
@@ -21,16 +21,16 @@ class Testsequences(unittest.TestCase):
def test_set_special_alpha(self):
"""> Create special escape sequence with alpha."""
- util.Color.alpha_num = 40
+ util.Color.alpha_num = 99
result = sequences.set_special(11, COLORS["special"]["background"])
- self.assertEqual(result, "\033]11;[40]#1F211E\007")
+ self.assertEqual(result, "\033]11;[99]#1F211E\007")
def test_set_color(self):
"""> Create color escape sequence."""
result = sequences.set_color(11, COLORS["colors"]["color0"])
self.assertEqual(result, "\033]4;11;#1F211E\007")
- def test_send_srquences(self):
+ def test_send_sequences(self):
"""> Send sequences to all open terminals."""
with unittest.mock.patch('sys.stdout', new=io.StringIO()) as fake_out:
sequences.send(COLORS, False)