From 395e69ddadc5ac0cbc1b49ee0863d524d9275cf7 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 11 Sep 2025 11:50:43 -0700 Subject: [PATCH] add another test --- tests/app/template/test_rest.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/app/template/test_rest.py b/tests/app/template/test_rest.py index f29ebac37..e41cc4e5d 100644 --- a/tests/app/template/test_rest.py +++ b/tests/app/template/test_rest.py @@ -327,7 +327,11 @@ def test_fuzz_should_be_error_if_service_does_not_exist_on_update( assert response.status_code == 404 assert json_resp["result"] == "error" - assert json_resp["message"] == "No result found" + assert ( + json_resp["message"] + == "The requested URL was not found on the server. \ + If you entered the URL manually please check your spelling and try again." + ) @pytest.mark.parametrize("template_type", [TemplateType.EMAIL])