mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-09 22:53:27 -05:00
6 lines
182 B
Python
6 lines
182 B
Python
def test_static_404s_return(client_request):
|
|
client_request.get_response_from_url(
|
|
"/static/images/some-image-that-doesnt-exist.png",
|
|
_expected_status=404,
|
|
)
|