diff --git a/test_emailer.py b/test_emailer.py index a10dafc..8eefbd5 100644 --- a/test_emailer.py +++ b/test_emailer.py @@ -306,7 +306,7 @@ def test_get_subject__msg_greater_than_50(self): repo = 'TEST/realllllllllllllllyyyyyyyyyyy-loooooooooooooong' msg = 'this is really long {0}'.format('.' * 100) assert len(msg) > 50 - expected = '[{0}] {1}'.format(repo, msg[:50]) + expected = '[Chapel Merge] {0}'.format(msg[:50]) actual = emailer._get_subject(repo, msg) self.assertEqual(expected, actual)