From 73d50a369ed6d1fcc59478576725ab931cfb9971 Mon Sep 17 00:00:00 2001 From: dandds Date: Thu, 26 Jul 2018 09:00:13 -0400 Subject: [PATCH] update financial verification tests --- tests/handlers/test_financial_verification.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/handlers/test_financial_verification.py b/tests/handlers/test_financial_verification.py index 4ca2ce2e..6e60bb4e 100644 --- a/tests/handlers/test_financial_verification.py +++ b/tests/handlers/test_financial_verification.py @@ -69,7 +69,7 @@ class TestPENumberInForm: response = yield self.submit_data(http_client, base_url, data) assert response.code == 302 - assert response.headers.get("Location") == "/requests" + assert response.headers.get("Location") == "/requests/financial_verification_submitted" @pytest.mark.gen_test def test_submit_request_form_with_new_valid_pe_id(self, monkeypatch, http_client, base_url): @@ -81,4 +81,4 @@ class TestPENumberInForm: response = yield self.submit_data(http_client, base_url, data) assert response.code == 302 - assert response.headers.get("Location") == "/requests" + assert response.headers.get("Location") == "/requests/financial_verification_submitted"