Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion test/integration/integration.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ class BaseIntegrationTest : Logger::Loggable<Logger::Id::testing> {

Api::ApiPtr api_;
Event::DispatcherPtr dispatcher_;
Stats::IsolatedStoreImpl stats_store_;

protected:
void testRouterRedirect(Http::CodecClient::Type type);
Expand Down
3 changes: 2 additions & 1 deletion test/integration/ssl_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ ClientContextPtr SslIntegrationTest::createClientSslContext(bool alpn, bool san)
}
Json::ObjectPtr loader = TestEnvironment::jsonLoadFromString(target);
ContextConfigImpl cfg(*loader);
return context_manager_->createSslClientContext(test_server_->store(), cfg);
static auto* client_stats_store = new Stats::TestIsolatedStoreImpl();
return context_manager_->createSslClientContext(*client_stats_store, cfg);
}

Network::ClientConnectionPtr SslIntegrationTest::makeSslClientConnection(bool alpn, bool san) {
Expand Down