From 2d6f6a5dc7ecd7243a94f4b873434238bd45d186 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 18 Sep 2025 15:13:55 -0500 Subject: [PATCH] fix --- .../repertory_test/include/fixtures/providers_fixture.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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;