[VFS] Fix warning and use better check.

llvm-svn: 352527
This commit is contained in:
Michael J. Spencer 2019-01-29 19:07:15 +00:00
parent 316ccf60c9
commit 2a5a0ad1e4
1 changed files with 1 additions and 1 deletions

View File

@ -776,7 +776,7 @@ TEST(ProxyFileSystemTest, Basic) {
bool Local = true;
ASSERT_FALSE(PFS.isLocal("/a", Local));
ASSERT_EQ(false, Local);
EXPECT_FALSE(Local);
}
class InMemoryFileSystemTest : public ::testing::Test {