| Index: net/cookies/cookie_constants_unittest.cc
|
| diff --git a/net/cookies/cookie_constants_unittest.cc b/net/cookies/cookie_constants_unittest.cc
|
| index f14f11e12793f5f57cc89e20523bc1a1f398f295..87fa1c1b10703a1a9aa7e9947055bfd53b25b75a 100644
|
| --- a/net/cookies/cookie_constants_unittest.cc
|
| +++ b/net/cookies/cookie_constants_unittest.cc
|
| @@ -31,7 +31,8 @@ TEST(CookieConstantsTest, TestCookiePriority) {
|
| EXPECT_LT(COOKIE_PRIORITY_MEDIUM, COOKIE_PRIORITY_HIGH);
|
|
|
| // Unrecognized tokens are interpreted as COOKIE_PRIORITY_DEFAULT.
|
| - const char* bad_tokens[] = {"", "lo", "lowerest", "high ", " high", "0"};
|
| + const char* const bad_tokens[] = {
|
| + "", "lo", "lowerest", "high ", " high", "0"};
|
| for (size_t i = 0; i < arraysize(bad_tokens); ++i) {
|
| EXPECT_EQ(COOKIE_PRIORITY_DEFAULT, StringToCookiePriority(bad_tokens[i]));
|
| }
|
|
|