From 00909bb5c1a27e7cf69f26eb6588ccce030c3fef Mon Sep 17 00:00:00 2001 From: dandds Date: Wed, 15 Aug 2018 11:05:34 -0400 Subject: [PATCH] fix tests based on updates to financial form --- tests/routes/test_financial_verification.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/routes/test_financial_verification.py b/tests/routes/test_financial_verification.py index 8e62cc48..fca2aa3b 100644 --- a/tests/routes/test_financial_verification.py +++ b/tests/routes/test_financial_verification.py @@ -47,7 +47,7 @@ class TestPENumberInForm: response = self.submit_data(client, self.required_data) - assert "We couldn\'t find that PE number" in response.data.decode() + assert "We couldn't find that PE number" in response.data.decode() assert response.status_code == 200 def test_submit_request_form_with_unchanged_pe_id(self, monkeypatch, client): @@ -81,5 +81,5 @@ class TestPENumberInForm: response = self.submit_data(client, data) - assert "There were some errors, see below" in response.data.decode() + assert "There were some errors" in response.data.decode() assert response.status_code == 200