diff options
-rw-r--r-- | unittests/Support/Path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp index fa2b45f03b..1f67f13e97 100644 --- a/unittests/Support/Path.cpp +++ b/unittests/Support/Path.cpp @@ -230,7 +230,7 @@ TEST_F(FileSystemTest, Magic) { ASSERT_FALSE(file.has_error()); StringRef magic(i->magic_str, i->magic_str_len); file << magic; - file.flush(); + file.close(); bool res = false; ASSERT_NO_ERROR(fs::has_magic(file_pathname.c_str(), magic, res)); EXPECT_TRUE(res); |