Skip to content

Commit

Permalink
adjust rest schema
Browse files Browse the repository at this point in the history
  • Loading branch information
mam10eks committed Dec 10, 2024
1 parent fe66a88 commit 1955a99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/test/api_access_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
),
route_to_test(
url_pattern="v1/tirex/topics/<str:dataset_id>",
url_pattern="v1/tirex/<str:dataset_id>/topics",
params={"dataset_id": "does-not-exist"},
group_to_expected_status_code={
ADMIN: 200,
Expand All @@ -58,7 +58,7 @@
},
),
route_to_test(
url_pattern="v1/tirex/topic/<str:dataset_id>/<str:qid>",
url_pattern="v1/tirex/<str:dataset_id>/topic/<str:qid>",
params={"dataset_id": "does-not-exist", "qid": "does-not-exist"},
group_to_expected_status_code={
ADMIN: 200,
Expand All @@ -69,7 +69,7 @@
},
),
route_to_test(
url_pattern="v1/tirex/runs-by-uuid/<str:run_uuid>",
url_pattern="v1/tirex/runs/<str:run_uuid>",
params={"run_uuid": "does-not-exist"},
group_to_expected_status_code={
ADMIN: 200,
Expand Down

0 comments on commit 1955a99

Please sign in to comment.