| Index: net/spdy/spdy_protocol_test_utils.cc
|
| diff --git a/net/spdy/spdy_protocol_test_utils.cc b/net/spdy/spdy_protocol_test_utils.cc
|
| index 73cc067cca2aa9caf4ea8150bd1ebc3a6e1988de..a91a55f0c6b52e0c4cac020283d1ce66741a7b61 100644
|
| --- a/net/spdy/spdy_protocol_test_utils.cc
|
| +++ b/net/spdy/spdy_protocol_test_utils.cc
|
| @@ -66,7 +66,7 @@ namespace test {
|
| DVLOG(1) << "VerifySpdyFrameIREquals SpdyGoAwayIR";
|
| if (expected.last_good_stream_id() != actual.last_good_stream_id())
|
| return ::testing::AssertionFailure();
|
| - if (expected.status() != actual.status())
|
| + if (expected.error_code() != actual.error_code())
|
| return ::testing::AssertionFailure();
|
| if (expected.description() != actual.description())
|
| return ::testing::AssertionFailure();
|
| @@ -141,7 +141,7 @@ namespace test {
|
| DVLOG(1) << "VerifySpdyFrameIREquals SpdyRstStreamIR";
|
| if (expected.stream_id() != actual.stream_id())
|
| return ::testing::AssertionFailure();
|
| - if (expected.status() != actual.status())
|
| + if (expected.error_code() != actual.error_code())
|
| return ::testing::AssertionFailure();
|
|
|
| return ::testing::AssertionSuccess();
|
|
|