Skip to content

Commit

Permalink
clean up test
Browse files Browse the repository at this point in the history
Signed-off-by: Janek Nouvertné <25355197+provinzkraut@users.noreply.github.com>
  • Loading branch information
provinzkraut committed Sep 16, 2023
1 parent 4d3aebc commit 59123f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_response/test_file_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def handler() -> File:
with create_test_client(handler) as client:
response = client.get("/")
assert response.status_code == HTTP_200_OK
assert [h.lower() for h in response.headers.get_list("last-modified")] == ["foo"]
assert response.headers.get_list("last-modified") == ["foo"]


def test_asgi_response_encoded_headers(file: Path) -> None:
Expand Down

0 comments on commit 59123f8

Please sign in to comment.