fix: adjust subrecipe description to allow running tests (#3585)

This commit is contained in:
Alex Hancock
2025-07-22 14:58:51 -04:00
committed by GitHub
parent 1adc887db4
commit fb70ef2784
2 changed files with 2 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ fn setup_default_sub_recipe() -> SubRecipe {
path: "test_sub_recipe.yaml".to_string(),
values: Some(HashMap::from([("key1".to_string(), "value1".to_string())])),
sequential_when_repeated: true,
description: Some("Test subrecipe".to_string()),
};
sub_recipe
}

View File

@@ -13,6 +13,7 @@ mod tests {
path: "test_sub_recipe.yaml".to_string(),
values: Some(HashMap::from([("key1".to_string(), "value1".to_string())])),
sequential_when_repeated: true,
description: Some("Test subrecipe".to_string()),
};
sub_recipe
}