From 2102eb81bf6106c05b5fc0ea3e709be3c87c61c9 Mon Sep 17 00:00:00 2001 From: Owocki Date: Thu, 26 Apr 2018 16:46:11 -0600 Subject: [PATCH] fixes https://github.com/gitcoinco/web/issues/987 --- app/dashboard/tests/test_notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dashboard/tests/test_notifications.py b/app/dashboard/tests/test_notifications.py index 858986cf004..1a9d3656f40 100644 --- a/app/dashboard/tests/test_notifications.py +++ b/app/dashboard/tests/test_notifications.py @@ -74,7 +74,7 @@ def test_build_github_notification_increased_bounty(self): message = build_github_notification(self.bounty, 'increased_bounty') assert f'__The funding of this issue was increased to {self.natural_value} {self.bounty.token_name}' in message assert self.usdt_value in message - assert f'[here]({self.absolute_url})' in message + assert f'This issue now has a funding of' in message assert f'${self.amount_open_work}' in message def tearDown(self):