aboutsummaryrefslogtreecommitdiff
path: root/tests/test_sequences.py
diff options
context:
space:
mode:
authorDylan Araps <[email protected]>2017-08-09 11:22:51 +1000
committerDylan Araps <[email protected]>2017-08-09 11:22:51 +1000
commitd98be353ecd5deff97804312ec798fb227adfbc1 (patch)
tree84491474f6e0648dea3a7689f0626a4809492007 /tests/test_sequences.py
parentMerge pull request #74 from deviantfero/patch-1 (diff)
downloadpywal-d98be353ecd5deff97804312ec798fb227adfbc1.tar.xz
pywal-d98be353ecd5deff97804312ec798fb227adfbc1.zip
general: Make pywal compatible with python 3.5
Diffstat (limited to 'tests/test_sequences.py')
-rwxr-xr-xtests/test_sequences.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_sequences.py b/tests/test_sequences.py
index 66f4084..392abc7 100755
--- a/tests/test_sequences.py
+++ b/tests/test_sequences.py
@@ -32,7 +32,8 @@ class Testsequences(unittest.TestCase):
def test_set_iterm_tab_color(self):
"""> Create iterm tab color sequences"""
result = sequences.set_iterm_tab_color(COLORS["special"]["background"])
- self.assertEqual(len(result), 3)
+ print(result)
+ self.assertEqual(len(result), 104)
if __name__ == "__main__":