From 2c3c5064d4232b9a08c5ebe0bf2e3bf1b7f437a6 Mon Sep 17 00:00:00 2001 From: sydney-runkle Date: Thu, 30 May 2024 10:55:29 -0400 Subject: [PATCH] comment out broken test --- demo/tests.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/demo/tests.py b/demo/tests.py index d6811bac..7febf6a4 100644 --- a/demo/tests.py +++ b/demo/tests.py @@ -75,9 +75,8 @@ def test_menu_links(client: TestClient, url: str): assert isinstance(data, list) -def test_forms_validate_correct_select_multiple(): - with client as _client: - countries = _client.get('api/forms/search', params={'q': None}) +def test_forms_validate_correct_select_multiple(client: TestClient): + countries = client.get('api/forms/search', params={'q': None}) countries_options = countries.json()['options'] r = client.post( 'api/forms/select',