| Index: chromeos/network/network_configuration_handler_unittest.cc
|
| diff --git a/chromeos/network/network_configuration_handler_unittest.cc b/chromeos/network/network_configuration_handler_unittest.cc
|
| index d1bd4bed1f129c903331b40de0ba5ee94f4b05a7..03fabc45f278dd052aab8f9d5c625d2afaaf12f9 100644
|
| --- a/chromeos/network/network_configuration_handler_unittest.cc
|
| +++ b/chromeos/network/network_configuration_handler_unittest.cc
|
| @@ -12,8 +12,8 @@
|
| #include "chromeos/dbus/mock_shill_manager_client.h"
|
| #include "chromeos/dbus/mock_shill_profile_client.h"
|
| #include "chromeos/dbus/mock_shill_service_client.h"
|
| -#include "chromeos/dbus/shill_stub_helper.h"
|
| #include "chromeos/network/network_configuration_handler.h"
|
| +#include "chromeos/network/network_profile_handler.h"
|
| #include "chromeos/network/network_state.h"
|
| #include "chromeos/network/network_state_handler.h"
|
| #include "chromeos/network/network_state_handler_observer.h"
|
| @@ -600,7 +600,7 @@ TEST_F(NetworkConfigurationHandlerStubTest, StubCreateConfiguration) {
|
| properties.SetStringWithoutPathExpansion(
|
| shill::kStateProperty, shill::kStateIdle);
|
| properties.SetStringWithoutPathExpansion(
|
| - shill::kProfileProperty, shill_stub_helper::kSharedProfilePath);
|
| + shill::kProfileProperty, NetworkProfileHandler::GetSharedProfilePath());
|
|
|
| network_configuration_handler_->CreateConfiguration(
|
| properties,
|
| @@ -620,7 +620,7 @@ TEST_F(NetworkConfigurationHandlerStubTest, StubCreateConfiguration) {
|
| std::string actual_profile;
|
| EXPECT_TRUE(GetServiceStringProperty(
|
| create_service_path_, shill::kProfileProperty, &actual_profile));
|
| - EXPECT_EQ(shill_stub_helper::kSharedProfilePath, actual_profile);
|
| + EXPECT_EQ(NetworkProfileHandler::GetSharedProfilePath(), actual_profile);
|
| }
|
|
|
| } // namespace chromeos
|
|
|