Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Unified Diff: net/spdy/hpack_entry_test.cc

Issue 485833002: HTTP2 draft 14 support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add ignore_result(). Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/spdy/hpack_entry.cc ('k') | net/spdy/hpack_header_table.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/hpack_entry_test.cc
diff --git a/net/spdy/hpack_entry_test.cc b/net/spdy/hpack_entry_test.cc
index 919a316a9b32dd293708be1f9a8764e4bc3d3345..0a9a0a251c6eb03eb9831e78b5840f5f09a660b5 100644
--- a/net/spdy/hpack_entry_test.cc
+++ b/net/spdy/hpack_entry_test.cc
@@ -61,7 +61,6 @@ TEST_F(HpackEntryTest, StaticConstructor) {
EXPECT_EQ(value_, entry.value());
EXPECT_TRUE(entry.IsStatic());
EXPECT_EQ(1u, IndexOf(entry));
- EXPECT_EQ(0u, entry.state());
EXPECT_EQ(Size(), entry.Size());
}
@@ -72,7 +71,6 @@ TEST_F(HpackEntryTest, DynamicConstructor) {
EXPECT_EQ(value_, entry.value());
EXPECT_FALSE(entry.IsStatic());
EXPECT_EQ(1u, IndexOf(entry));
- EXPECT_EQ(0u, entry.state());
EXPECT_EQ(Size(), entry.Size());
}
@@ -83,7 +81,6 @@ TEST_F(HpackEntryTest, LookupConstructor) {
EXPECT_EQ(value_, entry.value());
EXPECT_FALSE(entry.IsStatic());
EXPECT_EQ(0u, IndexOf(entry));
- EXPECT_EQ(0u, entry.state());
EXPECT_EQ(Size(), entry.Size());
}
@@ -92,7 +89,6 @@ TEST_F(HpackEntryTest, DefaultConstructor) {
EXPECT_TRUE(entry.name().empty());
EXPECT_TRUE(entry.value().empty());
- EXPECT_EQ(0u, entry.state());
EXPECT_EQ(HpackEntry::kSizeOverhead, entry.Size());
}
« no previous file with comments | « net/spdy/hpack_entry.cc ('k') | net/spdy/hpack_header_table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698