From df6dba9673fc8f008e3600739002018b0e80e220 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Tue, 9 May 2017 16:59:33 -0700 Subject: [PATCH] test_home: Fix expected text in /hello page. --- zerver/tests/test_home.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zerver/tests/test_home.py b/zerver/tests/test_home.py index 019eb19467..9bf8ab01f7 100644 --- a/zerver/tests/test_home.py +++ b/zerver/tests/test_home.py @@ -253,7 +253,7 @@ class HomeTest(ZulipTestCase): result = self.client_post('/accounts/accept_terms/') self.assertEqual(result.status_code, 200) self.assert_in_response("I agree to the", result) - self.assert_in_response("Finally, workplace chat", result) + self.assert_in_response("most productive group chat", result) def test_accept_terms_of_service(self): # type: () -> None @@ -425,7 +425,7 @@ class HomeTest(ZulipTestCase): with patch('zerver.views.home.get_subdomain', return_value=""): result = self._get_home_page() self.assertEqual(result.status_code, 200) - self.assert_in_response('Finally, workplace chat', result) + self.assert_in_response('most productive group chat', result) with patch('zerver.views.home.get_subdomain', return_value="subdomain"): result = self._get_home_page()