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

Unified Diff: net/spdy/hpack_encoder_test.cc

Issue 265763011: Land recent SPDY changes (through 66310528) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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_encoder.h ('k') | net/spdy/hpack_entry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/hpack_encoder_test.cc
diff --git a/net/spdy/hpack_encoder_test.cc b/net/spdy/hpack_encoder_test.cc
index c867f1f280ff793eec4bcf941b1c7cb98850b43a..8080e7fa457b5b2964d96b9f24ad857a0d098531 100644
--- a/net/spdy/hpack_encoder_test.cc
+++ b/net/spdy/hpack_encoder_test.cc
@@ -316,8 +316,8 @@ TEST_F(HpackEncoderTest, StringsDynamicallySelectHuffmanCoding) {
// Compactable string. Uses Huffman coding.
peer_.EmitString("feedbeef");
expected_.AppendPrefix(kStringLiteralHuffmanEncoded);
- expected_.AppendUint32(5);
- expected_.AppendBytes("\xC4G\v\xC4q");
+ expected_.AppendUint32(6);
+ expected_.AppendBytes("\xE0\xB5\xD3\xBDk\xE1");
// Non-compactable. Uses identity coding.
peer_.EmitString("@@@@@@");
« no previous file with comments | « net/spdy/hpack_encoder.h ('k') | net/spdy/hpack_entry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698