diff options
author | Alex Vakulenko <avakulenko@google.com> | 2015-10-13 09:27:13 -0700 |
---|---|---|
committer | Alex Vakulenko <avakulenko@google.com> | 2015-10-13 09:44:07 -0700 |
commit | 3f39d5cc753905874d8d93bef94f857b8808f19e (patch) | |
tree | 09c75380469065d508a1a59e27e4a4dd5b28763d /payload_generator/ext2_filesystem_unittest.cc | |
parent | 25fbdf83064c78dfb4d9143be25f080ee2c56730 (diff) |
update_engine: Rename "chromeos" -> "brillo" in include paths and namespaces
libchromeos is transitioning to libbrillo and chromeos namespaces
and include directory is changing to brillo.
Bug: 24872993
Change-Id: I770659a95be380a50fe3b2ba9f91d65818f40945
Diffstat (limited to 'payload_generator/ext2_filesystem_unittest.cc')
-rw-r--r-- | payload_generator/ext2_filesystem_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/payload_generator/ext2_filesystem_unittest.cc b/payload_generator/ext2_filesystem_unittest.cc index 628c4e0f..fef1c9ff 100644 --- a/payload_generator/ext2_filesystem_unittest.cc +++ b/payload_generator/ext2_filesystem_unittest.cc @@ -194,7 +194,7 @@ TEST_F(Ext2FilesystemTest, LoadSettingsFailsTest) { "gen/disk_ext2_1k.img"); unique_ptr<Ext2Filesystem> fs = Ext2Filesystem::CreateFromFile(path.value()); - chromeos::KeyValueStore store; + brillo::KeyValueStore store; // disk_ext2_1k.img doesn't have the /etc/update_engine.conf file. EXPECT_FALSE(fs->LoadSettings(&store)); } @@ -204,7 +204,7 @@ TEST_F(Ext2FilesystemTest, LoadSettingsWorksTest) { "gen/disk_ext2_ue_settings.img"); unique_ptr<Ext2Filesystem> fs = Ext2Filesystem::CreateFromFile(path.value()); - chromeos::KeyValueStore store; + brillo::KeyValueStore store; EXPECT_TRUE(fs->LoadSettings(&store)); string minor_version; EXPECT_TRUE(store.GetString("PAYLOAD_MINOR_VERSION", &minor_version)); |