From 769f1621ca65277473e51c77a079567b5124cb92 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 18 Sep 2025 15:12:49 -0500 Subject: [PATCH] fix --- .../include/fixtures/providers_fixture.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/repertory/repertory_test/include/fixtures/providers_fixture.hpp b/repertory/repertory_test/include/fixtures/providers_fixture.hpp index ca30b0ad..78a1b3fc 100644 --- a/repertory/repertory_test/include/fixtures/providers_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/providers_fixture.hpp @@ -45,7 +45,7 @@ namespace repertory { struct encrypt_provider_type final { static constexpr provider_type type{provider_type::encrypt}; - static void setup(std::unique_ptr &comm, + static void setup(std::unique_ptr &comm, std::unique_ptr &config, std::unique_ptr &provider) { auto config_path = @@ -77,7 +77,7 @@ struct encrypt_provider_type final { struct s3_provider_encrypted_type final { static constexpr provider_type type{provider_type::s3}; - static void setup(std::unique_ptr &comm, + static void setup(std::unique_ptr &comm, std::unique_ptr &config, std::unique_ptr &provider) { auto config_path = @@ -107,7 +107,7 @@ struct s3_provider_encrypted_type final { struct s3_provider_unencrypted_type final { static constexpr provider_type type{provider_type::s3}; - static void setup(std::unique_ptr &comm, + static void setup(std::unique_ptr &comm, std::unique_ptr &config, std::unique_ptr &provider) { auto config_path = @@ -137,7 +137,7 @@ struct s3_provider_unencrypted_type final { struct sia_provider_type final { static constexpr provider_type type{provider_type::sia}; - static void setup(std::unique_ptr &comm, + static void setup(std::unique_ptr &comm, std::unique_ptr &config, std::unique_ptr &provider) { auto config_path = @@ -167,7 +167,7 @@ struct sia_provider_type final { template class providers_test : public ::testing::Test { public: - static std::unique_ptr comm; + static std::unique_ptr comm; static std::unique_ptr config; static std::unique_ptr mgr; static std::unique_ptr provider; @@ -203,7 +203,7 @@ protected: }; template -std::unique_ptr providers_test::comm; +std::unique_ptr providers_test::comm; template std::unique_ptr providers_test::config;