mirror of https://github.com/tiangolo/fastapi.git
🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
This commit is contained in:
parent
b4afab0f16
commit
e4917eac00
|
|
@ -11,6 +11,7 @@ def get_client():
|
|||
c = TestClient(app)
|
||||
return c
|
||||
|
||||
|
||||
@needs_py310
|
||||
def test_foo_needy_very(client: TestClient):
|
||||
response = client.get("/query/mixed-type-params?query=1&query=2&foo=bar&foo=baz")
|
||||
|
|
@ -22,6 +23,7 @@ def test_foo_needy_very(client: TestClient):
|
|||
"sequence_mapping_int": {"foo": []},
|
||||
}
|
||||
|
||||
|
||||
@needs_py310
|
||||
def test_just_string_not_scalar_mapping(client: TestClient):
|
||||
response = client.get("/query/mixed-type-params?&query=2&foo=1&bar=3&foo=2&foo=baz")
|
||||
|
|
|
|||
Loading…
Reference in New Issue