From 9bc85121ab6580c7f74740e1c082ff5ce8062790 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Tue, 24 Oct 2017 13:42:03 +0200 Subject: [PATCH] removed xfail from reset password functional test --- tests/_functional/reset_password.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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