[unit test] Complete all providers unit tests #12
Some checks failed
Blockstorage/repertory/pipeline/head This commit looks good
BlockStorage/repertory/pipeline/head There was a failure building this commit

This commit is contained in:
2025-09-17 12:31:52 -05:00
parent c5ec37e0d8
commit 3f27736e2d

View File

@@ -175,7 +175,7 @@ const auto decrypt_parts = [](const repertory::app_config &cfg,
}; };
const auto pinned_includes_api_path = const auto pinned_includes_api_path =
[&](const auto &pinned, const std::string &expected_path) -> bool { [](const auto &pinned, const std::string &expected_path) -> bool {
return std::ranges::any_of(pinned, [&expected_path](auto &&api_path) -> bool { return std::ranges::any_of(pinned, [&expected_path](auto &&api_path) -> bool {
return api_path == expected_path; return api_path == expected_path;
}); });