1
0
mirror of synced 2025-04-20 11:47:43 +03:00

Fixed unit test problem

This commit is contained in:
yhirose 2019-09-03 17:16:07 -04:00
parent 80f040cf69
commit a0fe91e84d

View File

@ -701,7 +701,6 @@ TEST_F(ServerTest, GetMethod200) {
EXPECT_EQ(200, res->status);
EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
EXPECT_EQ(1, res->get_header_value_count("Content-Type"));
EXPECT_EQ("close", res->get_header_value("Connection"));
EXPECT_EQ("Hello World!", res->body);
}