From 8fdd1feb089cd5edaa03dee9f67d36a1d4cdcc80 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Mon, 20 Oct 2025 13:09:21 -0700 Subject: [PATCH] fix test --- tests/app/main/views/organizations/test_organizations.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/app/main/views/organizations/test_organizations.py b/tests/app/main/views/organizations/test_organizations.py index ea1202fbb..3dc7e74d8 100644 --- a/tests/app/main/views/organizations/test_organizations.py +++ b/tests/app/main/views/organizations/test_organizations.py @@ -655,16 +655,12 @@ def test_organization_trial_mode_services_shows_all_non_live_services( ) services = page.select(".browse-list-item") - assert len(services) == 2 + assert len(services) == 1 assert normalize_spaces(services[0].text) == "2" - assert normalize_spaces(services[1].text) == "3" assert services[0].find("a")["href"] == url_for( "main.service_dashboard", service_id="2" ) - assert services[1].find("a")["href"] == url_for( - "main.service_dashboard", service_id="3" - ) def test_organization_trial_mode_services_doesnt_work_if_not_platform_admin(