From 3234a88855f933a66d72164c283ed654c9397995 Mon Sep 17 00:00:00 2001 From: Tal Nordan Date: Sun, 18 Nov 2018 01:28:41 -0800 Subject: [PATCH] integration: make test use 3-arg base class ctor Make the constructor of `Echo2IntegrationTest` invoke the 3-arg version of the `BaseIntegrationTest` constructor, in order to allow removing the latter's overloaded constructor. Signed-off-by: Tal Nordan --- echo2_integration_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echo2_integration_test.cc b/echo2_integration_test.cc index 3a23b3c42..ab4e1838e 100644 --- a/echo2_integration_test.cc +++ b/echo2_integration_test.cc @@ -11,7 +11,7 @@ class Echo2IntegrationTest : public BaseIntegrationTest, } public: - Echo2IntegrationTest() : BaseIntegrationTest(GetParam(), echoConfig()) {} + Echo2IntegrationTest() : BaseIntegrationTest(GetParam(), realTime(), echoConfig()) {} /** * Initializer for an individual integration test. */