summaryrefslogtreecommitdiff
path: root/test/buildtool/execution_engine/executor
diff options
context:
space:
mode:
Diffstat (limited to 'test/buildtool/execution_engine/executor')
-rw-r--r--test/buildtool/execution_engine/executor/executor.test.cpp4
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 7eeee78f..59b06648 100644
--- a/test/buildtool/execution_engine/executor/executor.test.cpp
+++ b/test/buildtool/execution_engine/executor/executor.test.cpp
@@ -52,7 +52,7 @@ struct TestApiConfig {
struct TestExecutionConfig {
bool failed{};
- std::vector<std::string> outputs{};
+ std::vector<std::string> outputs;
};
struct TestResponseConfig {
@@ -60,7 +60,7 @@ struct TestApiConfig {
int exit_code{};
};
- std::unordered_map<std::string, TestArtifactConfig> artifacts{};
+ std::unordered_map<std::string, TestArtifactConfig> artifacts;
TestExecutionConfig execution;
TestResponseConfig response;
};