Remove unused print statement

This commit is contained in:
Stefans Mezulis 2023-09-17 12:22:00 +01:00
parent 197fd02e82
commit f030bb2668
1 changed files with 0 additions and 1 deletions

View File

@ -31,6 +31,5 @@ def test_get_route(path: str):
def test_form_alias_is_correct(schema_obj: str):
response = client.get("/openapi.json")
assert response.status_code == 200, response.text
print(response.json()["components"]["schemas"])
form_properties = response.json()["components"]["schemas"][schema_obj]["properties"]
assert "aliased-field" in form_properties