| Index: net/spdy/spdy_session_unittest.cc
|
| diff --git a/net/spdy/spdy_session_unittest.cc b/net/spdy/spdy_session_unittest.cc
|
| index cc64f1bc912029c8e124adf48c34f22aabc3dfdf..7be6c367bb593dbe3c803fa186539ebbc0e3a78b 100644
|
| --- a/net/spdy/spdy_session_unittest.cc
|
| +++ b/net/spdy/spdy_session_unittest.cc
|
| @@ -3428,8 +3428,9 @@ TEST_F(SpdySessionTest, CloseOneIdleConnectionWithAlias) {
|
| NetLogWithSource());
|
| // Get a session for |key2|, which should return the session created earlier.
|
| base::WeakPtr<SpdySession> session2 =
|
| - spdy_session_pool_->FindAvailableSession(key2, GURL(),
|
| - NetLogWithSource());
|
| + spdy_session_pool_->FindAvailableSession(
|
| + key2, GURL(),
|
| + /* enable_ip_based_pooling = */ true, NetLogWithSource());
|
| ASSERT_EQ(session1.get(), session2.get());
|
| EXPECT_FALSE(pool->IsStalled());
|
|
|
|
|