Browse Source

🎨 Auto format

pull/14322/head
pre-commit-ci-lite[bot] 5 months ago
committed by GitHub
parent
commit
1de6fc107e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      tests/test_tutorial/test_query_params_str_validations/test_tutorial006c.py

4
tests/test_tutorial/test_query_params_str_validations/test_tutorial006c.py

@ -37,7 +37,9 @@ def test_query_params_str_validations_no_query(client: TestClient):
@pytest.mark.parametrize("q_value", ["None", "null", ""])
def test_query_params_str_validations_send_explicit_none(client: TestClient, q_value: str):
def test_query_params_str_validations_send_explicit_none(
client: TestClient, q_value: str
):
response = client.get("/items/", params={"q": q_value})
assert response.status_code == 200
assert response.json() == {

Loading…
Cancel
Save