From 38c36de655a4b38d99282b8b11bf75bf2247e71b Mon Sep 17 00:00:00 2001 From: Machiko Yasuda Date: Wed, 11 Dec 2024 17:17:55 +0000 Subject: [PATCH] test(models): update test_tempate_path spec --- tests/pytest/core/test_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytest/core/test_models.py b/tests/pytest/core/test_models.py index afbb4f0b3..c92436d50 100644 --- a/tests/pytest/core/test_models.py +++ b/tests/pytest/core/test_models.py @@ -31,7 +31,7 @@ def mock_requests_get_pem_data(mocker): @pytest.mark.parametrize( "input_template,expected_path", [ - ("error.html", f"{settings.BASE_DIR}/benefits/templates/error.html"), + ("error-base.html", f"{settings.BASE_DIR}/benefits/templates/error-base.html"), ("core/index.html", f"{settings.BASE_DIR}/benefits/core/templates/core/index.html"), ("eligibility/start.html", f"{settings.BASE_DIR}/benefits/eligibility/templates/eligibility/start.html"), ("", None),