summaryrefslogtreecommitdiffstats
path: root/sql/mojo/vfs_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sql/mojo/vfs_unittest.cc')
-rw-r--r--sql/mojo/vfs_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/mojo/vfs_unittest.cc b/sql/mojo/vfs_unittest.cc
index e51f1bd..e53ea11 100644
--- a/sql/mojo/vfs_unittest.cc
+++ b/sql/mojo/vfs_unittest.cc
@@ -58,12 +58,12 @@ class VFSTest : public mojo::test::ApplicationTestBase,
filesystem::FileSystemClientPtr client;
binding_.Bind(GetProxy(&client));
- filesystem::FileError error = filesystem::FILE_ERROR_FAILED;
+ filesystem::FileError error = filesystem::FileError::FAILED;
filesystem::DirectoryPtr directory;
files_->OpenFileSystem("temp", GetProxy(&directory), std::move(client),
mojo::Capture(&error));
ASSERT_TRUE(files_.WaitForIncomingResponse());
- ASSERT_EQ(filesystem::FILE_ERROR_OK, error);
+ ASSERT_EQ(filesystem::FileError::OK, error);
vfs_.reset(new ScopedMojoFilesystemVFS(std::move(directory)));
}