diff options
Diffstat (limited to 'test/buildtool/execution_engine/executor')
-rw-r--r-- | test/buildtool/execution_engine/executor/executor.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp index 6793014b..1f0312f7 100644 --- a/test/buildtool/execution_engine/executor/executor.test.cpp +++ b/test/buildtool/execution_engine/executor/executor.test.cpp @@ -80,8 +80,8 @@ class TestResponse : public IExecutionResponse { artifacts.emplace( path, Artifact::ObjectInfo{ - ArtifactDigest{path, 0, /*is_tree=*/false}, - ObjectType::File}); + .digest = ArtifactDigest{path, 0, /*is_tree=*/false}, + .type = ObjectType::File}); } catch (...) { return {}; } |