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

Unified Diff: net/spdy/spdy_framer_test.cc

Issue 337613010: Treat HTTP2 priority weight as zero-indexed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_framer_test.cc
diff --git a/net/spdy/spdy_framer_test.cc b/net/spdy/spdy_framer_test.cc
index 9558a25cc93e4ac7ff8a8f2832988463d69de56d..6c17c6d4c79e8e2f05380cb4ecf8fc624ed2aacb 100644
--- a/net/spdy/spdy_framer_test.cc
+++ b/net/spdy/spdy_framer_test.cc
@@ -5329,11 +5329,11 @@ TEST_P(SpdyFramerTest, ReadPriority) {
return;
}
SpdyFramer framer(spdy_version_);
- SpdyPriorityIR priority(3, 1, 99, false);
+ SpdyPriorityIR priority(3, 1, 255, false);
scoped_ptr<SpdySerializedFrame> frame(framer.SerializePriority(priority));
testing::StrictMock<test::MockSpdyFramerVisitor> visitor;
framer.set_visitor(&visitor);
- EXPECT_CALL(visitor, OnPriority(3, 1, 99, false));
+ EXPECT_CALL(visitor, OnPriority(3, 1, 255, false));
framer.ProcessInput(frame->data(), frame->size());
EXPECT_EQ(SpdyFramer::SPDY_RESET, framer.state());
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698