diff options
Diffstat (limited to 'test/buildtool/execution_engine/dag/dag.test.cpp')
-rw-r--r-- | test/buildtool/execution_engine/dag/dag.test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/buildtool/execution_engine/dag/dag.test.cpp b/test/buildtool/execution_engine/dag/dag.test.cpp index b793a2a7..a9b87554 100644 --- a/test/buildtool/execution_engine/dag/dag.test.cpp +++ b/test/buildtool/execution_engine/dag/dag.test.cpp @@ -143,7 +143,7 @@ TEST_CASE("AddAction({single action, single output, no inputs, env_variables})", DependencyGraph g; std::vector<std::string> const command{ "/bin/sh", "-c", "set -e\necho 'Hello, ${NAME}' > greeting"}; - nlohmann::json const env_vars{{"NAME", name}}; + std::map<std::string, std::string> const env_vars{{"NAME", name}}; auto const action_description = ActionDescription{ {"greeting"}, {}, Action{action_id, command, env_vars}, {}}; |