| Index: services/shell/tests/shutdown/shutdown_unittest.cc
|
| diff --git a/services/shell/tests/shutdown/shutdown_unittest.cc b/services/shell/tests/shutdown/shutdown_unittest.cc
|
| index 93d1c943522bbbab1b44b2d82b725011bb0bf4d6..7b51376c4fb98bfa66de77a00d984291f6d6de13 100644
|
| --- a/services/shell/tests/shutdown/shutdown_unittest.cc
|
| +++ b/services/shell/tests/shutdown/shutdown_unittest.cc
|
| @@ -12,7 +12,7 @@ namespace {
|
|
|
| class ShutdownTest : public test::ServiceTest {
|
| public:
|
| - ShutdownTest() : test::ServiceTest("mojo:shutdown_unittest") {}
|
| + ShutdownTest() : test::ServiceTest("service:shutdown_unittest") {}
|
| ~ShutdownTest() override {}
|
|
|
| private:
|
| @@ -25,11 +25,11 @@ TEST_F(ShutdownTest, ConnectRace) {
|
| // working as intended.
|
|
|
| mojom::ShutdownTestClientControllerPtr control;
|
| - connector()->ConnectToInterface("mojo:shutdown_client", &control);
|
| + connector()->ConnectToInterface("service:shutdown_client", &control);
|
|
|
| // Connect to shutdown_service and immediately request that it shut down.
|
| mojom::ShutdownTestServicePtr service;
|
| - connector()->ConnectToInterface("mojo:shutdown_service", &service);
|
| + connector()->ConnectToInterface("service:shutdown_service", &service);
|
| service->ShutDown();
|
|
|
| // Tell shutdown_client to connect to an interface on shutdown_service and
|
|
|