summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/http/http_pipelined_host_pool_unittest.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/http/http_pipelined_host_pool_unittest.cc b/net/http/http_pipelined_host_pool_unittest.cc
index 9863678..11db1e9 100644
--- a/net/http/http_pipelined_host_pool_unittest.cc
+++ b/net/http/http_pipelined_host_pool_unittest.cc
@@ -235,19 +235,19 @@ TEST_F(HttpPipelinedHostPoolTest, MultipleKeys) {
EXPECT_CALL(*host1, IsExistingPipelineAvailable())
.Times(1)
.WillOnce(Return(true));
- EXPECT_EQ(true, pool_->IsExistingPipelineAvailableForKey(key1));
+ EXPECT_TRUE(pool_->IsExistingPipelineAvailableForKey(key1));
EXPECT_CALL(*host2, IsExistingPipelineAvailable())
.Times(1)
.WillOnce(Return(false));
- EXPECT_EQ(false, pool_->IsExistingPipelineAvailableForKey(key2));
+ EXPECT_FALSE(pool_->IsExistingPipelineAvailableForKey(key2));
EXPECT_CALL(*host3, IsExistingPipelineAvailable())
.Times(1)
.WillOnce(Return(true));
- EXPECT_EQ(true, pool_->IsExistingPipelineAvailableForKey(key3));
+ EXPECT_TRUE(pool_->IsExistingPipelineAvailableForKey(key3));
- EXPECT_EQ(false, pool_->IsExistingPipelineAvailableForKey(key4));
+ EXPECT_FALSE(pool_->IsExistingPipelineAvailableForKey(key4));
pool_->OnHostIdle(host1);
pool_->OnHostIdle(host2);