From e6aaddf837ec62c3eab348458964414445920ffb Mon Sep 17 00:00:00 2001 From: alv2017 Date: Tue, 11 Mar 2025 01:16:17 +0200 Subject: [PATCH] Test refactoring: tests/test_tutorial/test_path_params/test_tutorial004.py --- tests/test_tutorial/test_path_params/test_tutorial004.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/test_tutorial/test_path_params/test_tutorial004.py b/tests/test_tutorial/test_path_params/test_tutorial004.py index acbeaca76..e003a6777 100644 --- a/tests/test_tutorial/test_path_params/test_tutorial004.py +++ b/tests/test_tutorial/test_path_params/test_tutorial004.py @@ -7,21 +7,19 @@ client = TestClient(app) def test_file_path(): response = client.get("/files/home/johndoe/myfile.txt") - print(response.content) - assert response.status_code == 200, response.text + assert response.status_code == 200 assert response.json() == {"file_path": "home/johndoe/myfile.txt"} def test_root_file_path(): response = client.get("/files//home/johndoe/myfile.txt") - print(response.content) - assert response.status_code == 200, response.text + assert response.status_code == 200 assert response.json() == {"file_path": "/home/johndoe/myfile.txt"} def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200, response.text + assert response.status_code == 200 assert response.json() == { "openapi": "3.1.0", "info": {"title": "FastAPI", "version": "0.1.0"},