Fix #286 - http response headers overwritten with request headers (#483)

This commit is contained in:
Glenn Engel
2023-09-01 08:11:07 -07:00
committed by GitHub
parent 0dd284267a
commit 28832f8732
2 changed files with 2 additions and 5 deletions

View File

@ -60,6 +60,7 @@ TEST_CASE("http server", "[httpd]")
REQUIRE(response->errorCode == HttpErrorCode::Ok);
REQUIRE(response->statusCode == 200);
REQUIRE(response->headers["Accept-Encoding"] == "gzip");
REQUIRE(response->headers["Content-Encoding"] == "gzip");
server.stop();
}