From 95792fb717bd84d500037b62c77a4949274e670d Mon Sep 17 00:00:00 2001 From: Maksim Denisov Date: Wed, 29 Jan 2025 09:46:58 +0100 Subject: Replace ArtifactBlobContainer and BazelBlobContainer ...with explicit std::unordered_set. --- test/buildtool/execution_api/common/api_test.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/buildtool/execution_api/common/api_test.hpp') diff --git a/test/buildtool/execution_api/common/api_test.hpp b/test/buildtool/execution_api/common/api_test.hpp index fcb90634..5cfedef1 100644 --- a/test/buildtool/execution_api/common/api_test.hpp +++ b/test/buildtool/execution_api/common/api_test.hpp @@ -24,6 +24,7 @@ #include #include #include +#include #include #include @@ -253,9 +254,8 @@ using ExecProps = std::map; std::string output_path{"output_file"}; auto api = api_factory(); - CHECK(api->Upload(ArtifactBlobContainer{{ArtifactBlob{ - test_digest, test_content, /*is_exec=*/false}}}, - false)); + CHECK(api->Upload( + {ArtifactBlob{test_digest, test_content, /*is_exec=*/false}}, false)); auto action = api->CreateAction(*api->UploadTree({{input_path, &input_artifact}}), -- cgit v1.2.3