chore(test/printExport): delegate creation to DefaultValueFactory

This commit is contained in:
Zhongheng Liu 2026-01-05 17:20:25 +01:00
commit 253da0b5bc
2 changed files with 9 additions and 7 deletions

View file

@ -54,4 +54,10 @@ public class DefaultValueFactory {
defaultIngredient,
"Some");
}
public static VagueIngredient getDefaultVagueIngredient(String name) {
return new VagueIngredient(
new Ingredient(name, 0., 0., 0.),
"Some");
}
}