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)]