| Index: net/http/http_server_properties_impl_unittest.cc
|
| diff --git a/net/http/http_server_properties_impl_unittest.cc b/net/http/http_server_properties_impl_unittest.cc
|
| index 9bbc183ded1c3ea10a2b0e24a4d5ec90858647ca..c566005d251fe19fe64da1b4a53394801939af9a 100644
|
| --- a/net/http/http_server_properties_impl_unittest.cc
|
| +++ b/net/http/http_server_properties_impl_unittest.cc
|
| @@ -897,9 +897,9 @@ TEST_F(AlternateProtocolServerPropertiesTest, Canonical) {
|
| alternative_service_vector[1].port);
|
|
|
| // Verify the canonical suffix.
|
| - EXPECT_EQ(".c.youtube.com", impl_.GetCanonicalSuffix(test_server.host()));
|
| + EXPECT_EQ(".c.youtube.com", *impl_.GetCanonicalSuffix(test_server.host()));
|
| EXPECT_EQ(".c.youtube.com",
|
| - impl_.GetCanonicalSuffix(canonical_server.host()));
|
| + *impl_.GetCanonicalSuffix(canonical_server.host()));
|
| }
|
|
|
| TEST_F(AlternateProtocolServerPropertiesTest, ClearCanonical) {
|
|
|