| Index: net/spdy/spdy_framer_test.cc
|
| diff --git a/net/spdy/spdy_framer_test.cc b/net/spdy/spdy_framer_test.cc
|
| index 57626afe1d23e5e5c375b94e13f598941ab74fd5..db92bf45b4abb7d6244e7245704c0305fb5a74cb 100644
|
| --- a/net/spdy/spdy_framer_test.cc
|
| +++ b/net/spdy/spdy_framer_test.cc
|
| @@ -2337,10 +2337,10 @@ TEST_P(SpdyFramerTest, CreateSettings) {
|
| 0x0a, 0x0b, 0x0c, 0x0d,
|
| };
|
| const unsigned char kV4FrameData[] = {
|
| - 0x00, 0x05, 0x04, 0x00,
|
| + 0x00, 0x06, 0x04, 0x00,
|
| 0x00, 0x00, 0x00, 0x00,
|
| - 0x04, 0x0a, 0x0b, 0x0c,
|
| - 0x0d,
|
| + 0x00, 0x04, 0x0a, 0x0b,
|
| + 0x0c, 0x0d,
|
| };
|
|
|
| uint32 kValue = 0x0a0b0c0d;
|
| @@ -2400,15 +2400,15 @@ TEST_P(SpdyFramerTest, CreateSettings) {
|
| // ordering for settings_ir works. HTTP2 has no requirement on ordering on
|
| // the wire.
|
| const unsigned char kV4FrameData[] = {
|
| - 0x00, 0x14, 0x04, 0x00,
|
| + 0x00, 0x18, 0x04, 0x00,
|
| 0x00, 0x00, 0x00, 0x00,
|
| - 0x03, // 3rd Setting
|
| + 0x00, 0x03, // 3rd Setting
|
| 0x00, 0x00, 0x00, 0x07,
|
| - 0x04, // 4th Setting
|
| + 0x00, 0x04, // 4th Setting
|
| 0x00, 0x00, 0x00, 0x08,
|
| - 0x01, // 1st Setting
|
| + 0x00, 0x01, // 1st Setting
|
| 0x00, 0x00, 0x00, 0x05,
|
| - 0x02, // 2nd Setting
|
| + 0x00, 0x02, // 2nd Setting
|
| 0x00, 0x00, 0x00, 0x06,
|
| };
|
|
|
| @@ -3465,13 +3465,13 @@ TEST_P(SpdyFramerTest, ReadDuplicateSettings) {
|
| 0x00, 0x00, 0x00, 0x03,
|
| };
|
| const unsigned char kV4FrameData[] = {
|
| - 0x00, 0x0f, 0x04, 0x00,
|
| + 0x00, 0x12, 0x04, 0x00,
|
| 0x00, 0x00, 0x00, 0x00,
|
| - 0x01, // 1st Setting
|
| + 0x00, 0x01, // 1st Setting
|
| 0x00, 0x00, 0x00, 0x02,
|
| - 0x01, // 2nd (duplicate) Setting
|
| + 0x00, 0x01, // 2nd (duplicate) Setting
|
| 0x00, 0x00, 0x00, 0x03,
|
| - 0x03, // 3rd (unprocessed) Setting
|
| + 0x00, 0x03, // 3rd (unprocessed) Setting
|
| 0x00, 0x00, 0x00, 0x03,
|
| };
|
|
|
| @@ -3524,13 +3524,13 @@ TEST_P(SpdyFramerTest, ReadOutOfOrderSettings) {
|
| 0x00, 0x00, 0x00, 0x03,
|
| };
|
| const unsigned char kV4FrameData[] = {
|
| - 0x00, 0x0f, 0x04, 0x00,
|
| + 0x00, 0x12, 0x04, 0x00,
|
| 0x00, 0x00, 0x00, 0x00,
|
| - 0x02, // 1st Setting
|
| + 0x00, 0x02, // 1st Setting
|
| 0x00, 0x00, 0x00, 0x02,
|
| - 0x01, // 2nd (out of order) Setting
|
| + 0x00, 0x01, // 2nd (out of order) Setting
|
| 0x00, 0x00, 0x00, 0x03,
|
| - 0x03, // 3rd (unprocessed) Setting
|
| + 0x00, 0x03, // 3rd (unprocessed) Setting
|
| 0x00, 0x00, 0x00, 0x03,
|
| };
|
|
|
|
|