Skip to content

Commit

Permalink
comment out broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
sydney-runkle committed May 30, 2024
1 parent ff76a5d commit 2c3c506
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions demo/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 2c3c506

Please sign in to comment.