| Index: net/quic/quic_session_test.cc
|
| diff --git a/net/quic/quic_session_test.cc b/net/quic/quic_session_test.cc
|
| index d38b32b838e54cbe39aea48977935c07702a60ee..a0da6b962c0c1ad8c57d6b993e0dbc2f563b440e 100644
|
| --- a/net/quic/quic_session_test.cc
|
| +++ b/net/quic/quic_session_test.cc
|
| @@ -136,7 +136,9 @@ class TestSession : public QuicSpdySession {
|
| "Too many streams!");
|
| return nullptr;
|
| } else {
|
| - return new TestStream(id, this);
|
| + TestStream* stream = new TestStream(id, this);
|
| + ActivateStream(stream);
|
| + return stream;
|
| }
|
| }
|
|
|
|
|