| Index: net/spdy/spdy_http_stream_unittest.cc
|
| diff --git a/net/spdy/spdy_http_stream_unittest.cc b/net/spdy/spdy_http_stream_unittest.cc
|
| index d1d354636eba4224a9f69f768af28daa16a66184..a2fdf58fa01d3e502d657d3df5c077d9c0d8e53a 100644
|
| --- a/net/spdy/spdy_http_stream_unittest.cc
|
| +++ b/net/spdy/spdy_http_stream_unittest.cc
|
| @@ -116,8 +116,10 @@ TEST_F(SpdyHttpStreamTest, SendRequest) {
|
| TestCompletionCallback callback;
|
| HttpResponseInfo response;
|
|
|
| - scoped_refptr<SpdyStream> stream(
|
| - session->CreateStream(request.url, HIGHEST, BoundNetLog()));
|
| + scoped_refptr<SpdyStream> stream;
|
| + ASSERT_EQ(
|
| + OK,
|
| + session->CreateStream(request.url, HIGHEST, &stream, BoundNetLog()));
|
|
|
| scoped_ptr<SpdyHttpStream> http_stream(new SpdyHttpStream(stream.get()));
|
| http_stream->InitializeRequest(request, base::Time::Now(), NULL);
|
|
|