From 13e79560331aa1ce52c5613473aa1fd2e1db951d Mon Sep 17 00:00:00 2001 From: Philipp Roshchin Date: Thu, 11 Apr 2024 16:52:25 +0300 Subject: [PATCH] fixed test --- app/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/tests.py b/app/tests.py index cfdd0a2..3cc9435 100644 --- a/app/tests.py +++ b/app/tests.py @@ -7,12 +7,12 @@ api_test = APIRouter(tags=["test"]) -@api_test.get("/test_post_date") +@api_test.post("/test_post_date") def test_post_date(data: TestInput): return data -@api_test.post("/test_get_plot") +@api_test.get("/test_get_plot") def test_get_plot() -> dict[str, list[int]]: arr_len = 100 x = [i for i in range(arr_len)]