diff --git a/repertory/repertory_test/include/fixtures/providers_fixture.hpp b/repertory/repertory_test/include/fixtures/providers_fixture.hpp index 78a1b3fc..db973863 100644 --- a/repertory/repertory_test/include/fixtures/providers_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/providers_fixture.hpp @@ -169,9 +169,9 @@ template class providers_test : public ::testing::Test { public: static std::unique_ptr comm; static std::unique_ptr config; + static console_consumer consumer; static std::unique_ptr mgr; static std::unique_ptr provider; - static console_consumer consumer{}; protected: static void SetUpTestCase() { @@ -208,6 +208,9 @@ std::unique_ptr providers_test::comm; template std::unique_ptr providers_test::config; +template +console_consumer providers_test::consumer; + template std::unique_ptr providers_test::mgr;