diff options
Diffstat (limited to 'test/buildtool/execution_engine/executor')
-rw-r--r-- | test/buildtool/execution_engine/executor/executor_api.test.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/buildtool/execution_engine/executor/executor_api.test.hpp b/test/buildtool/execution_engine/executor/executor_api.test.hpp index 8ec43fb0..2043da88 100644 --- a/test/buildtool/execution_engine/executor/executor_api.test.hpp +++ b/test/buildtool/execution_engine/executor/executor_api.test.hpp @@ -556,7 +556,10 @@ static inline void TestUploadAndDownloadTrees( SECTION("Dot-path non-tree as action input") { auto action_inputs = ActionDescription::inputs_t{{".", foo_desc}}; ActionDescription action_desc{ - {"foo"}, {}, Action{"action_id", {"echo"}, {}}, action_inputs}; + {"foo"}, + {}, + Action{"action_id", std::vector<std::string>{"echo"}, {}}, + action_inputs}; REQUIRE(g.Add({action_desc})); auto const* action_node = g.ActionNodeWithId("action_id"); |