Fix unit test.

llvm-svn: 298014
This commit is contained in:
Zachary Turner 2017-03-16 23:19:40 +00:00
parent ae1249e4f2
commit 78d15af1fa
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ TEST(is_separator, Works) {
#ifdef LLVM_ON_WIN32
EXPECT_TRUE(path::is_separator('\\'));
#else
EXPECT_FALSE(path::is_separator('\\', ));
EXPECT_FALSE(path::is_separator('\\'));
#endif
}