summaryrefslogtreecommitdiffstats
path: root/chrome/browser/component_updater/cld_component_installer_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/component_updater/cld_component_installer_unittest.cc')
-rw-r--r--chrome/browser/component_updater/cld_component_installer_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/component_updater/cld_component_installer_unittest.cc b/chrome/browser/component_updater/cld_component_installer_unittest.cc
index e3833f1..ab40b35 100644
--- a/chrome/browser/component_updater/cld_component_installer_unittest.cc
+++ b/chrome/browser/component_updater/cld_component_installer_unittest.cc
@@ -102,7 +102,7 @@ TEST_F(CldComponentInstallerTest, GetInstalledPath) {
const base::FilePath base_dir;
const base::FilePath result =
CldComponentInstallerTraits::GetInstalledPath(base_dir);
- ASSERT_TRUE(EndsWith(result.value(), kTestCldDataFileName, true));
+ ASSERT_TRUE(base::EndsWith(result.value(), kTestCldDataFileName, true));
}
TEST_F(CldComponentInstallerTest, GetBaseDirectory) {
@@ -128,7 +128,7 @@ TEST_F(CldComponentInstallerTest, ComponentReady) {
base::FilePath result = CldComponentInstallerTraits::GetLatestCldDataFile();
ASSERT_TRUE(base::StartsWith(result.AsUTF16Unsafe(),
install_dir.AsUTF16Unsafe(), true));
- ASSERT_TRUE(EndsWith(result.value(), kTestCldDataFileName, true));
+ ASSERT_TRUE(base::EndsWith(result.value(), kTestCldDataFileName, true));
}
} // namespace component_updater