From 0a52cd01442329b99f4bd7029f33088a454511ad Mon Sep 17 00:00:00 2001 From: Montana Date: Mon, 13 May 2019 09:35:31 -0400 Subject: [PATCH] Update csrf test for updated content --- tests/routes/test_errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/routes/test_errors.py b/tests/routes/test_errors.py index 35c0d82d..0ffff430 100644 --- a/tests/routes/test_errors.py +++ b/tests/routes/test_errors.py @@ -19,4 +19,4 @@ def test_csrf_error(csrf_enabled_app, client): body = response.data.decode() assert "Session Expired" in body - assert "Log in Required" in body + assert "Log in required" in body