From d795e97412eacc9400413552d436503c1a0721c9 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sun, 16 Feb 2025 08:46:35 -0600 Subject: [PATCH] [Unit Test] Complete all providers unit tests #12 --- repertory/repertory_test/src/providers_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/repertory/repertory_test/src/providers_test.cpp b/repertory/repertory_test/src/providers_test.cpp index 56595d3f..4088ebd1 100644 --- a/repertory/repertory_test/src/providers_test.cpp +++ b/repertory/repertory_test/src/providers_test.cpp @@ -638,6 +638,7 @@ static void get_file(const app_config &cfg, i_provider &provider) { EXPECT_EQ(std::size_t(46U), file.file_size); #endif EXPECT_STREQ(source_path.c_str(), file.source_path.c_str()); + return; } } @@ -664,6 +665,7 @@ static void get_file_fails_if_item_is_directory(const app_config &cfg, api_file file{}; EXPECT_EQ(api_error::directory_exists, provider.get_file(api_path, file)); + return; } }