about summary refs log tree commit diff stats
path: root/062convert_ingredients_to_text.cc
diff options
context:
space:
mode:
Diffstat (limited to '062convert_ingredients_to_text.cc')
-rw-r--r--062convert_ingredients_to_text.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/062convert_ingredients_to_text.cc b/062convert_ingredients_to_text.cc
index eb5fbd22..0a4e7a94 100644
--- a/062convert_ingredients_to_text.cc
+++ b/062convert_ingredients_to_text.cc
@@ -148,8 +148,10 @@ bool is_static_array(const reagent& x) {
 :(scenario append_other_types_to_text)
 def main [
   local-scope
-  a:text <- append [abc], 10, 11
-  expected:text <- new [abc1011]
+  n:number <- copy 11
+  c:character <- copy 111/o
+  a:text <- append [abc], 10, n, c
+  expected:text <- new [abc1011o]
   10:boolean/raw <- equal a, expected
 ]