Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILIPP111007 committed Apr 11, 2024
1 parent a7b91e4 commit 13e7956
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 13e7956

Please sign in to comment.