diff options
| author | Dylan Araps <[email protected]> | 2017-07-10 00:09:11 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-10 00:09:11 +1000 |
| commit | a6f99791ce79f0eed40396e8f3462413ce66554c (patch) | |
| tree | 77bd9cc12991137d6449c7a3cc1e492363c99ffb /tests/test_sequences.py | |
| parent | general: Update (diff) | |
| parent | export: Add wallpaper to export files, (diff) | |
| download | pywal-a6f99791ce79f0eed40396e8f3462413ce66554c.tar.xz pywal-a6f99791ce79f0eed40396e8f3462413ce66554c.zip | |
Merge pull request #42 from dylanaraps/wallpaper
export: Add wallpaper to export files.
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 f4cbb36..a1ea10c 100755 --- a/tests/test_sequences.py +++ b/tests/test_sequences.py @@ -15,12 +15,12 @@ class Testsequences(unittest.TestCase): def test_set_special(self): """> Create special escape sequence.""" result = sequences.set_special(11, COLORS["special"]["background"]) - self.assertEqual(result, "\x1b]11;#3A5130\x07") + self.assertEqual(result, "\033]11;#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;#3A5130\007") + self.assertEqual(result, "\033]4;11;#1F211E\007") if __name__ == "__main__": |