diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-23 22:06:12 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-23 22:06:12 +1000 |
| commit | aa6b1516310c9022359e41280426007355da8051 (patch) | |
| tree | b476648cda1e6998736f1417abceb1b900ae24c8 | |
| parent | 2e39be9627571af3844c5a2d5f2f826d9e80fcea (diff) | |
tests: Fix failing test
| -rw-r--r-- | README.md | 3 | ||||
| -rwxr-xr-x | tests/test_sequences.py | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -1,6 +1,7 @@ # pywal (A `wal` rewrite in Python 3) -[](https://pypi.python.org/pypi/pywal/) [](./LICENSE.md) [](https://travis-ci.org/dylanaraps/pywal) +[](https://pypi.python.org/pypi/pywal/) [](./LICENSE.md) [](https://travis-ci.org/dylanaraps/pywal) [](https://codecov.io/gh/dylanaraps/pywal) + **\[[Installation](https://github.com/dylanaraps/pywal/wiki/Installation)\] \[[Getting Started](https://github.com/dylanaraps/pywal/wiki/Getting-Started)\] \[[Customization](https://github.com/dylanaraps/pywal/wiki/Customization)\] \[[Wiki](https://github.com/dylanaraps/pywal/wiki)\]** diff --git a/tests/test_sequences.py b/tests/test_sequences.py index a5c9d07..19ea6e2 100755 --- a/tests/test_sequences.py +++ b/tests/test_sequences.py @@ -28,8 +28,8 @@ class Testsequences(unittest.TestCase): """> Send sequences to all open terminals.""" with unittest.mock.patch('sys.stdout', new=io.StringIO()) as fake_out: sequences.send(COLORS, False) - self.assertEqual(fake_out.getvalue().strip(), - "colors: Set terminal colors") + data = fake_out.getvalue().strip() + self.assertTrue(data.endswith("colors: Set terminal colors")) if __name__ == "__main__": |
