mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 09:18:27 +00:00
Fix #335
This commit is contained in:
parent
f5e19faae7
commit
4d545cb932
2 changed files with 2 additions and 2 deletions
|
@ -1232,7 +1232,7 @@ TEST_F(ServerTest, UserDefinedMIMETypeMapping) {
|
||||||
ASSERT_TRUE(res != nullptr);
|
ASSERT_TRUE(res != nullptr);
|
||||||
EXPECT_EQ(200, res->status);
|
EXPECT_EQ(200, res->status);
|
||||||
EXPECT_EQ("text/abcde", res->get_header_value("Content-Type"));
|
EXPECT_EQ("text/abcde", res->get_header_value("Content-Type"));
|
||||||
EXPECT_EQ("abcde\n", res->body);
|
EXPECT_EQ("abcde", res->body);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_F(ServerTest, InvalidBaseDirMount) {
|
TEST_F(ServerTest, InvalidBaseDirMount) {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
abcde
|
abcde
|
Loading…
Add table
Add a link
Reference in a new issue