From aa6b1516310c9022359e41280426007355da8051 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 23 Jul 2017 22:06:12 +1000 Subject: tests: Fix failing test --- tests/test_sequences.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_sequences.py') 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__": -- cgit v1.2.3