From 83db81d0016135ab3b7016eadc0bb175b216a25b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 11 Mar 2025 12:25:39 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_tutorial/test_path_params/test_tutorial004.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_tutorial/test_path_params/test_tutorial004.py b/tests/test_tutorial/test_path_params/test_tutorial004.py index 6fb25ecd5..f4512ed74 100644 --- a/tests/test_tutorial/test_path_params/test_tutorial004.py +++ b/tests/test_tutorial/test_path_params/test_tutorial004.py @@ -7,9 +7,9 @@ client = TestClient(app) test_data = [ - ("/files/data/monthly-2024.csv", {"file_path": "data/monthly-2024.csv"}), - ("/files/home/johndoe/myfile.txt", {"file_path": "home/johndoe/myfile.txt"}), - ("/files//home/johndoe/myfile.txt", {"file_path": "/home/johndoe/myfile.txt"}), + ("/files/data/monthly-2024.csv", {"file_path": "data/monthly-2024.csv"}), + ("/files/home/johndoe/myfile.txt", {"file_path": "home/johndoe/myfile.txt"}), + ("/files//home/johndoe/myfile.txt", {"file_path": "/home/johndoe/myfile.txt"}), ]