From 267db8a594628436b7c7172baf3284196be49b46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Sat, 16 Apr 2016 01:17:37 +0300 Subject: [PATCH] Fix tests. --- hc/front/tests/test_channel_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hc/front/tests/test_channel_checks.py b/hc/front/tests/test_channel_checks.py index 1dd8109c..adfc082c 100644 --- a/hc/front/tests/test_channel_checks.py +++ b/hc/front/tests/test_channel_checks.py @@ -17,7 +17,7 @@ class ChannelChecksTestCase(BaseTestCase): self.client.login(username="alice@example.org", password="password") r = self.client.get(url) - self.assertContains(r, "alice@example.org", status_code=200) + self.assertContains(r, "Assign Checks to Channel", status_code=200) def test_it_checks_owner(self): mallory = User(username="mallory", email="mallory@example.org")