소스 검색

fixed path to the current directory.

yhirose 12 년 전
부모
커밋
5c01c69223
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/test.cc

+ 1 - 1
test/test.cc

@@ -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