commit | 2a5a0ad1e464d3f7de437540328bfda5ac5b5538 | [log] [tgz] |
---|---|---|
author | Michael J. Spencer <bigcheesegs@gmail.com> | Tue Jan 29 19:07:15 2019 +0000 |
committer | Michael J. Spencer <bigcheesegs@gmail.com> | Tue Jan 29 19:07:15 2019 +0000 |
tree | ebb9c181028dbda413496d1c1080e5f13f1722e5 | |
parent | 316ccf60c9094d0b6c32761526782bd407bc3099 [diff] [blame] |
[VFS] Fix warning and use better check. llvm-svn: 352527
diff --git a/llvm/unittests/Support/VirtualFileSystemTest.cpp b/llvm/unittests/Support/VirtualFileSystemTest.cpp index f6cbd5b..fc39f50 100644 --- a/llvm/unittests/Support/VirtualFileSystemTest.cpp +++ b/llvm/unittests/Support/VirtualFileSystemTest.cpp
@@ -776,7 +776,7 @@ bool Local = true; ASSERT_FALSE(PFS.isLocal("/a", Local)); - ASSERT_EQ(false, Local); + EXPECT_FALSE(Local); } class InMemoryFileSystemTest : public ::testing::Test {