| Index: chrome/browser/extensions/api/networking_private/networking_private_apitest.cc
|
| diff --git a/chrome/browser/extensions/api/networking_private/networking_private_apitest.cc b/chrome/browser/extensions/api/networking_private/networking_private_apitest.cc
|
| index da228f85fd20b1673505d1aad409242b186c29c8..bb316d6c663bff5cd74820f275f965478ba573f6 100644
|
| --- a/chrome/browser/extensions/api/networking_private/networking_private_apitest.cc
|
| +++ b/chrome/browser/extensions/api/networking_private/networking_private_apitest.cc
|
| @@ -244,8 +244,8 @@ class ExtensionNetworkingPrivateApiTest
|
| ipconfig.SetStringWithoutPathExpansion(shill::kAddressProperty, "0.0.0.0");
|
| ipconfig.SetStringWithoutPathExpansion(shill::kGatewayProperty, "0.0.0.1");
|
| ipconfig.SetIntegerWithoutPathExpansion(shill::kPrefixlenProperty, 0);
|
| - ipconfig.SetStringWithoutPathExpansion(
|
| - shill::kMethodProperty, shill::kTypeIPv4);
|
| + ipconfig.SetStringWithoutPathExpansion(shill::kMethodProperty,
|
| + shill::kTypeIPv4);
|
| ip_config_test->AddIPConfig(kIPConfigPath, ipconfig);
|
|
|
| // Add Devices
|
| @@ -255,6 +255,9 @@ class ExtensionNetworkingPrivateApiTest
|
| wifi_ip_configs.AppendString(kIPConfigPath);
|
| device_test->SetDeviceProperty(
|
| kWifiDevicePath, shill::kIPConfigsProperty, wifi_ip_configs);
|
| + device_test->SetDeviceProperty(kWifiDevicePath,
|
| + shill::kAddressProperty,
|
| + base::StringValue("001122aabbcc"));
|
| device_test->AddDevice(
|
| kCellularDevicePath, shill::kTypeCellular, "stub_cellular_device1");
|
|
|
|
|