From b39222a62ee658d6c95c805901c58e606aba0222 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 2 Feb 2017 09:20:39 +0000 Subject: [PATCH] Removed duplicate test --- tests/app/main/views/test_feedback.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/app/main/views/test_feedback.py b/tests/app/main/views/test_feedback.py index 3e7689a2a..92d1efd8a 100644 --- a/tests/app/main/views/test_feedback.py +++ b/tests/app/main/views/test_feedback.py @@ -28,7 +28,6 @@ def test_get_support_index_page(client): ('question', 'Ask a question or give feedback'), ]) @pytest.mark.parametrize('logged_in, expected_form_field, expected_contact_details', [ - (True, type(None), 'We’ll reply to test@user.gov.uk'), (True, type(None), 'We’ll reply to test@user.gov.uk'), (False, element.Tag, None), ])