Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
tests: update
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Dec 28, 2017
1 parent 249a00e commit 266dacf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_set_special(self):
if platform.uname()[0] == "Darwin":
self.assertEqual(result, "\033]Ph1F211E\033\\")
else:
self.assertEqual(result, "\033]11;#1F211E\007")
self.assertEqual(result, "\033]11;#1F211E\033\\")

def test_set_special_alpha(self):
"""> Create special escape sequence with alpha."""
Expand All @@ -30,7 +30,7 @@ def test_set_special_alpha(self):
if platform.uname()[0] == "Darwin":
self.assertEqual(result, "\033]Ph1F211E\033\\")
else:
self.assertEqual(result, "\033]11;[99]#1F211E\007")
self.assertEqual(result, "\033]11;[99]#1F211E\033\\")

def test_set_color(self):
"""> Create color escape sequence."""
Expand All @@ -39,7 +39,7 @@ def test_set_color(self):
if platform.uname()[0] == "Darwin":
self.assertEqual(result, "\033]Pb1F211E\033\\")
else:
self.assertEqual(result, "\033]4;11;#1F211E\007")
self.assertEqual(result, "\033]4;11;#1F211E\033\\")

def test_set_iterm_tab_color(self):
"""> Create iterm tab color sequences"""
Expand Down

0 comments on commit 266dacf

Please sign in to comment.