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

Unified Diff: net/spdy/spdy_session_unittest.cc

Issue 246073007: SPDY & HPACK: Land recent internal changes (through 65328503) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on upstream change: Expanded FRAME_TOO_LARGE/FRAME_SIZE_ERROR comment. Created 6 years, 8 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/spdy_session.cc ('k') | net/spdy/spdy_test_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session_unittest.cc
diff --git a/net/spdy/spdy_session_unittest.cc b/net/spdy/spdy_session_unittest.cc
index 1d3ccb28d2d9f73dd529206857cf47fdb5d46f13..5978f9384d9520b0eadd7ebad9f2036e0aa0fcf4 100644
--- a/net/spdy/spdy_session_unittest.cc
+++ b/net/spdy/spdy_session_unittest.cc
@@ -4135,9 +4135,12 @@ TEST(MapRstStreamStatusToProtocolError, MapsValues) {
CHECK_EQ(STATUS_CODE_PROTOCOL_ERROR,
MapRstStreamStatusToProtocolError(
RST_STREAM_PROTOCOL_ERROR));
- CHECK_EQ(STATUS_CODE_FRAME_TOO_LARGE,
+ CHECK_EQ(STATUS_CODE_FRAME_SIZE_ERROR,
MapRstStreamStatusToProtocolError(
- RST_STREAM_FRAME_TOO_LARGE));
+ RST_STREAM_FRAME_SIZE_ERROR));
+ CHECK_EQ(STATUS_CODE_ENHANCE_YOUR_CALM,
+ MapRstStreamStatusToProtocolError(
+ RST_STREAM_ENHANCE_YOUR_CALM));
}
} // namespace net
« no previous file with comments | « net/spdy/spdy_session.cc ('k') | net/spdy/spdy_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698