| Index: net/cookies/cookie_util_unittest.cc
|
| diff --git a/net/cookies/cookie_util_unittest.cc b/net/cookies/cookie_util_unittest.cc
|
| index 384527a0da505c8916b7a1edc1d9a46698ef17f0..d261ec7f589da3ff3a8bd731b0d1c3f0aec28426 100644
|
| --- a/net/cookies/cookie_util_unittest.cc
|
| +++ b/net/cookies/cookie_util_unittest.cc
|
| @@ -45,11 +45,7 @@ TEST(CookieUtilTest, TestDomainIsHostOnly) {
|
| const struct {
|
| const char* str;
|
| const bool is_host_only;
|
| - } tests[] = {
|
| - { "", true },
|
| - { "www.google.com", true },
|
| - { ".google.com", false }
|
| - };
|
| + } tests[] = {{"", true}, {"www.foo.com", true}, {".foo.com", false}};
|
|
|
| for (size_t i = 0; i < arraysize(tests); ++i) {
|
| EXPECT_EQ(tests[i].is_host_only,
|
|
|