DocDoeAI / tests /test_http_status.py
asnannp's picture
deploy: sync backend to Space root (learn-lesson HF cache fix)
f9aae2c
Raw
History Blame Contribute Delete
244 Bytes
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