From f030bb2668a72f4064a61c387fcd659d33fe33f0 Mon Sep 17 00:00:00 2001 From: Stefans Mezulis <stefans.mezulis@gmail.com> Date: Sun, 17 Sep 2023 12:22:00 +0100 Subject: [PATCH] Remove unused print statement --- tests/test_openapi_form_alias.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_openapi_form_alias.py b/tests/test_openapi_form_alias.py index 887a756c8..dc74dab8f 100644 --- a/tests/test_openapi_form_alias.py +++ b/tests/test_openapi_form_alias.py @@ -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