Fixed PRI request problem

This commit is contained in:
yhirose 2019-10-03 13:41:33 -04:00
parent 1f86e41d97
commit dcdb0d047b
2 changed files with 8 additions and 6 deletions

View file

@ -1396,7 +1396,7 @@ TEST_F(ServerTest, NoMultipleHeaders) {
TEST_F(ServerTest, HTTP2Magic) {
Request req;
req.method = "PRI";
req.path = "/";
req.path = "*";
req.body = "SM";
auto res = std::make_shared<Response>();