diff --git a/tests/_functional/reset_password.py b/tests/_functional/reset_password.py index 834973c..12f37b5 100644 --- a/tests/_functional/reset_password.py +++ b/tests/_functional/reset_password.py @@ -8,7 +8,6 @@ from . import testapp, get_token_url from .. import get_user -@pytest.mark.xfail def test_reset_password(testapp): ''' test the complete reset password process ''' @@ -55,7 +54,8 @@ def test_reset_password(testapp): form = response.forms[1] form['username'] = 'TerryGilliam' form['password'] = 'Nudge Nudge' - response = form.submit().follow() + response = form.submit() + response = testapp.get('/faq') assert '' in response