From abea16334f27c981164fe141c0f8c83bfd9463b9 Mon Sep 17 00:00:00 2001 From: Harvey Tuch Date: Tue, 15 May 2018 14:36:10 -0400 Subject: [PATCH] Reduce log verbosity (and log write races). Signed-off-by: Harvey Tuch --- test/integration/integration.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/integration.cc b/test/integration/integration.cc index e3cc9ee65b36..d9cf03aec5e2 100644 --- a/test/integration/integration.cc +++ b/test/integration/integration.cc @@ -132,7 +132,7 @@ IntegrationTcpClient::IntegrationTcpClient(Event::Dispatcher& dispatcher, EXPECT_CALL(factory, create_(_, _)) .WillOnce(Invoke([&](std::function below_low, std::function above_high) -> Buffer::Instance* { - client_write_buffer_ = new MockWatermarkBuffer(below_low, above_high); + client_write_buffer_ = new NiceMock(below_low, above_high); return client_write_buffer_; }));