test_signup: Fix test for login page redirect.

I forgot to update this in 43bba27e5d.
This commit is contained in:
Tim Abbott 2017-10-05 23:36:23 -07:00
parent 313083484a
commit 1a9adbbe70
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ class LoginTest(ZulipTestCase):
"""
self.login(self.example_email("cordelia"))
response = self.client_get("/login/")
self.assertEqual(response["Location"], "/")
self.assertEqual(response["Location"], "http://zulip.testserver")
class InviteUserTest(ZulipTestCase):