From ec01be8fafe5e6ebc5c6a28c37a1f071c9dca5bb Mon Sep 17 00:00:00 2001 From: alexjanousekGSA Date: Fri, 8 Aug 2025 20:16:47 -0400 Subject: [PATCH] fixing more linting errors --- tests/app/main/views/test_template_folders.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/app/main/views/test_template_folders.py b/tests/app/main/views/test_template_folders.py index 3098ed93b..e90301184 100644 --- a/tests/app/main/views/test_template_folders.py +++ b/tests/app/main/views/test_template_folders.py @@ -410,9 +410,8 @@ def test_should_show_templates_folder_page( if expected_empty_message: empty_messages = [p for p in page.select("p.text-base") if "No templates found" not in p.text] - assert empty_messages and normalize_spaces(empty_messages[0].text) == ( - expected_empty_message - ) + assert empty_messages, "No empty folder message found" + assert normalize_spaces(empty_messages[0].text) == expected_empty_message mock_get_service_templates.assert_called_once_with(SERVICE_ONE_ID) @@ -1804,6 +1803,5 @@ def test_should_filter_templates_folder_page_based_on_user_permissions( # Look for the empty folder message specifically, not the live search no results message # The empty folder message is in a div > p.text-base structure, whereas search no results is different empty_messages = [p for p in page.select("p.text-base") if "No templates found" not in p.text] - assert empty_messages and normalize_spaces(empty_messages[0].text) == ( - expected_empty_message - ) + assert empty_messages, "No empty folder message found" + assert normalize_spaces(empty_messages[0].text) == expected_empty_message