Fix tests

This commit is contained in:
Alexandre Aubin 2022-02-01 14:59:24 +01:00
parent 6316b94af4
commit 05a459d4df
2 changed files with 277 additions and 375 deletions

File diff suppressed because it is too large Load diff

View file

@ -1408,6 +1408,7 @@ def ask_questions_and_parse_answers(
out = []
for name, raw_question in raw_questions.items():
raw_question['name'] = name
question_class = ARGUMENTS_TYPE_PARSERS[raw_question.get("type", "string")]
raw_question["value"] = answers.get(name)
question = question_class(raw_question, context=context, hooks=hooks)