about summary refs log tree commit diff stats
path: root/070text.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-05-26 18:50:33 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-05-26 18:50:33 -0700
commitd3f1d63c7950b72dabf16b41fc9e9589e0e192cd (patch)
tree4b4968edf3c30a392ac0ffe8953abdb62454cae9 /070text.mu
parentad8161f34526599a94b12d38554cff9ac20467da (diff)
downloadmu-d3f1d63c7950b72dabf16b41fc9e9589e0e192cd.tar.gz
3016
Diffstat (limited to '070text.mu')
-rw-r--r--070text.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/070text.mu b/070text.mu
index 5fc7e96d..bd5e8236 100644
--- a/070text.mu
+++ b/070text.mu
@@ -513,13 +513,13 @@ def interpolate template:address:array:character -> result:address:array:charact
 scenario interpolate-works [
   run [
     local-scope
-    x:address:array:character <- new [abc _]
+    x:address:array:character <- new [abc_ghi]
     y:address:array:character <- new [def]
     z:address:array:character <- interpolate x, y
     10:array:character/raw <- copy *z
   ]
   memory-should-contain [
-    10:array:character <- [abc def]
+    10:array:character <- [abcdefghi]
   ]
 ]