From 823b3dbc7b22bc0cb1d2275552d723b10658fdb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Wed, 16 Dec 2020 14:11:36 +0200 Subject: [PATCH] Fix tests --- hc/front/tests/test_add_opsgenie.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hc/front/tests/test_add_opsgenie.py b/hc/front/tests/test_add_opsgenie.py index 54dbf127..4c0773e8 100644 --- a/hc/front/tests/test_add_opsgenie.py +++ b/hc/front/tests/test_add_opsgenie.py @@ -12,7 +12,7 @@ class AddOpsGenieTestCase(BaseTestCase): def test_instructions_work(self): self.client.login(username="alice@example.org", password="password") r = self.client.get(self.url) - self.assertContains(r, "escalation policies and incident tracking") + self.assertContains(r, "escalation policies, and incident tracking") def test_it_works(self): form = {"key": "123456", "region": "us"}