fixed path to the current directory.

This commit is contained in:
yhirose 2013-07-07 20:16:38 -04:00
parent 8fc7140e06
commit 5c01c69223

View File

@ -270,7 +270,7 @@ TEST_F(ServerTest, GetMethodDirTest)
TEST_F(ServerTest, InvalidBaseDir)
{
EXPECT_EQ(false, svr_.set_base_dir("invalid_dir"));
EXPECT_EQ(true, svr_.set_base_dir("./"));
EXPECT_EQ(true, svr_.set_base_dir("."));
}
#ifdef _WIN32