summaryrefslogtreecommitdiffstats
path: root/mojo/runner/shell_apptest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/runner/shell_apptest.cc')
-rw-r--r--mojo/runner/shell_apptest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/mojo/runner/shell_apptest.cc b/mojo/runner/shell_apptest.cc
index a675805..70f7864 100644
--- a/mojo/runner/shell_apptest.cc
+++ b/mojo/runner/shell_apptest.cc
@@ -184,7 +184,7 @@ TEST_F(ShellAppTest, MojoURLQueryHandling) {
application_impl()->ConnectToService("mojo:pingable_app?foo", &pingable);
auto callback = [this](const String& app_url, const String& connection_url,
const String& message) {
- EXPECT_TRUE(EndsWith(app_url, "/pingable_app.mojo", true));
+ EXPECT_TRUE(base::EndsWith(app_url, "/pingable_app.mojo", true));
EXPECT_EQ(app_url.To<std::string>() + "?foo", connection_url);
EXPECT_EQ("hello", message);
base::MessageLoop::current()->Quit();