From b73cba45d6f3f5df968e625e385bb5be0ac4681f Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 16 Sep 2025 14:56:25 -0500 Subject: [PATCH] [unit test] Complete all providers unit tests #12 --- repertory/repertory_test/src/providers_test.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/repertory/repertory_test/src/providers_test.cpp b/repertory/repertory_test/src/providers_test.cpp index ebebf92b..5e99acb2 100644 --- a/repertory/repertory_test/src/providers_test.cpp +++ b/repertory/repertory_test/src/providers_test.cpp @@ -887,11 +887,12 @@ static void get_filesystem_item_from_source_path(const app_config &cfg, create_file(provider, api_path); - EXPECT_EQ(api_error::success, - set_item_meta(api_path, { - {META_SIZE, std::to_string(size)}, - {META_SOURCE, source_path}, - })); + EXPECT_EQ( + api_error::success, + provider.set_item_meta(api_path, { + {META_SIZE, std::to_string(size)}, + {META_SOURCE, source_path}, + })); stop_type stop_requested{false}; auto res = provider.upload_file(api_path, source_path, stop_requested);