File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
services/director/tests/api Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ async def test_get_services_extras_by_key_and_version_with_empty_registry(
2525 resp = await client .get (
2626 f"/{ api_version_prefix } /service_extras/whatever/someversion"
2727 )
28- assert resp .status_code == status .HTTP_400_BAD_REQUEST
28+ assert resp .status_code == status .HTTP_400_BAD_REQUEST , f"Got f { resp . text } "
2929 resp = await client .get (
3030 f"/{ api_version_prefix } /service_extras/simcore/services/dynamic/something/someversion"
3131 )
32- assert resp .status_code == status .HTTP_404_NOT_FOUND
32+ assert resp .status_code == status .HTTP_404_NOT_FOUND , f"Got f { resp . text } "
3333 resp = await client .get (
3434 f"/{ api_version_prefix } /service_extras/simcore/services/dynamic/something/1.5.2"
3535 )
36- assert resp .status_code == status .HTTP_404_NOT_FOUND
36+ assert resp .status_code == status .HTTP_404_NOT_FOUND , f"Got f { resp . text } "
3737
3838
3939async def test_get_services_extras_by_key_and_version (
You can’t perform that action at this time.
0 commit comments