summaryrefslogtreecommitdiff
path: root/tests/test_sequences.py
diff options
context:
space:
mode:
authorMatthew Leonberger <linuxunil@gmail.com>2017-09-24 16:28:52 +0900
committerMatthew Leonberger <linuxunil@gmail.com>2017-09-24 16:28:52 +0900
commitc913a023add0a42f1ae004943571e7e34ddac30f (patch)
tree2fbf55dffe04d1f41a61659c1fbea8a4ee4b31ff /tests/test_sequences.py
parent93ea9b519e0c741e937f3374adce7e1939614099 (diff)
Remove sequence order tests per Issue #102
Diffstat (limited to 'tests/test_sequences.py')
-rwxr-xr-xtests/test_sequences.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_sequences.py b/tests/test_sequences.py
index 8034da7..72f16b7 100755
--- a/tests/test_sequences.py
+++ b/tests/test_sequences.py
@@ -34,13 +34,5 @@ class Testsequences(unittest.TestCase):
result = sequences.set_iterm_tab_color(COLORS["special"]["background"])
self.assertEqual(len(result), 104)
- def test_sequence_order(self):
- """> Test that the sequences are in order."""
- result = sequences.create_sequences(COLORS, vte=False).split("\007")
- self.assertEqual(result[2], "\x1b]4;2;#CC6A93")
- self.assertEqual(result[15], "\x1b]4;15;#F5F1F4")
- self.assertEqual(result[8], "\x1b]4;8;#666666")
-
-
if __name__ == "__main__":
unittest.main()