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..3d5a77c8e141583dc2a2b2c7b59163ae5cb3ae8a 100644 |
--- a/net/cookies/cookie_util_unittest.cc |
+++ b/net/cookies/cookie_util_unittest.cc |
@@ -46,10 +46,7 @@ TEST(CookieUtilTest, TestDomainIsHostOnly) { |
const char* str; |
const bool is_host_only; |
} tests[] = { |
- { "", true }, |
- { "www.google.com", true }, |
- { ".google.com", false } |
- }; |
+ {"", true}, {"www.google.izzle", true}, {".google.izzle", false}}; |
for (size_t i = 0; i < arraysize(tests); ++i) { |
EXPECT_EQ(tests[i].is_host_only, |