diff options
author | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-12-01 17:20:36 -0200 |
---|---|---|
committer | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-12-01 17:20:36 -0200 |
commit | 8b26f3f40e3f5d04a02528c81616a231d8f8428a (patch) | |
tree | a98e12a1fe0406d8dcc5279b36c1ba8905e4ed0a /service/test/integration | |
parent | e4fd5581c91e97940fe893eda42a8f200d1e8d22 (diff) |
[#849] Change unauthorized message
Diffstat (limited to 'service/test/integration')
-rw-r--r-- | service/test/integration/test_multi_user_login.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/integration/test_multi_user_login.py b/service/test/integration/test_multi_user_login.py index af2a81ac..fe456583 100644 --- a/service/test/integration/test_multi_user_login.py +++ b/service/test/integration/test_multi_user_login.py @@ -51,4 +51,4 @@ class MultiUserLoginTest(MultiUserSoledadTestBase): response, login_request = self.app_test_client.login('username', 'wrong_password') response_str = yield response self.assertEqual(401, login_request.responseCode) - self.assertIn('Invalid credentials', login_request.written) + self.assertIn('Invalid username or password', login_request.written) |