| from app.core.http_status import HTTP_413_CONTENT_TOO_LARGE, HTTP_422_UNPROCESSABLE_CONTENT | |
| def test_http_status_aliases_are_valid_codes() -> None: | |
| assert HTTP_413_CONTENT_TOO_LARGE == 413 | |
| assert HTTP_422_UNPROCESSABLE_CONTENT == 422 | |
| from app.core.http_status import HTTP_413_CONTENT_TOO_LARGE, HTTP_422_UNPROCESSABLE_CONTENT | |
| def test_http_status_aliases_are_valid_codes() -> None: | |
| assert HTTP_413_CONTENT_TOO_LARGE == 413 | |
| assert HTTP_422_UNPROCESSABLE_CONTENT == 422 | |