commit | f33423c54d298dd331a52d2a262c7954416f105b | [log] [tgz] |
---|---|---|
author | Alex Kalugin <[email protected]> | Thu Oct 15 03:26:07 2020 |
committer | Commit Bot <[email protected]> | Thu Oct 15 03:26:07 2020 |
tree | f9ab8d80a84c6ca90bb3f5cfd0c3d5c36d300945 | |
parent | a7e57da9a26a7c21f6cf73b92112b8454b14688d [diff] [blame] |
Fix ParsedCookieTest.TestSetEmptyNameValue test Change-Id: I6f3c3323638257d890edad4ba137f1914edcb38b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2469560 Reviewed-by: Lily Chen <[email protected]> Commit-Queue: Alexander Kalugin <[email protected]> Cr-Commit-Position: refs/heads/master@{#817355}
diff --git a/net/cookies/parsed_cookie_unittest.cc b/net/cookies/parsed_cookie_unittest.cc index 27ce53d..83eb707 100644 --- a/net/cookies/parsed_cookie_unittest.cc +++ b/net/cookies/parsed_cookie_unittest.cc
@@ -48,7 +48,7 @@ EXPECT_EQ("value", empty_name.Value()); EXPECT_FALSE(empty_name.SetValue("")); EXPECT_EQ("value", empty_name.Value()); - EXPECT_TRUE(empty_value.IsValid()); + EXPECT_TRUE(empty_name.IsValid()); } TEST(ParsedCookieTest, TestQuoted) {