From 44a320ee74cc0de0d6962c0c76f6f39998373d4c Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Wed, 13 Mar 2013 12:28:26 -0400 Subject: [PATCH] Fix a failling test --- tests/configured_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/configured_tests.py b/tests/configured_tests.py index 5afa534..26ec9e9 100644 --- a/tests/configured_tests.py +++ b/tests/configured_tests.py @@ -255,7 +255,7 @@ class ConfirmableTests(SecurityTest): def test_send_confirmation_with_invalid_email(self): r = self._post('/confirm', data=dict(email='bogus@bogus.com')) - msg = self.app.config['USER_DOES_NOT_EXIST'][0] + msg = self.app.config['SECURITY_MSG_USER_DOES_NOT_EXIST'][0] self.assertIn(msg, r.data) def test_resend_confirmation(self):