about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-23 21:25:50 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-23 21:25:50 -0700
commite993c19b249dbc9f3edaff4b24078a00c493b3d2 (patch)
treede9f84cff1c1acbcf25ab5ea40653ee1d3381c6e
parentae87193b68bcceec31b555a0b4cc4f284e97b811 (diff)
downloadmu-e993c19b249dbc9f3edaff4b24078a00c493b3d2.tar.gz
1828
-rw-r--r--edit.mu12
1 files changed, 6 insertions, 6 deletions
diff --git a/edit.mu b/edit.mu
index a592a509..040cd270 100644
--- a/edit.mu
+++ b/edit.mu
@@ -3175,20 +3175,20 @@ scenario run-shows-warnings-in-get [
   ]
   run [
     x:address:array:character <- new [ 
-recipe foo2 [
+recipe foo [
   get 123:number, foo:offset
 ]]
-    y:address:array:character <- new [foo2]
+    y:address:array:character <- new [foo]
     env:address:programming-environment-data <- new-programming-environment screen:address, x:address:array:character, y:address:array:character
     event-loop screen:address, console:address, env:address:programming-environment-data
   ]
   screen-should-contain [
     .                                                                                 run (F10)          .
     .                                                  ┊                                                 .
-    .recipe foo2 [                                     ┊━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
+    .recipe foo [                                      ┊━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
     .  get 123:number, foo:offset                      ┊                                                x.
-    .]                                                 ┊foo2                                             .
-    .unknown element foo in container number           ┊foo2: 'get' on a non-container 123:number        .
+    .]                                                 ┊foo                                              .
+    .unknown element foo in container number           ┊foo: 'get' on a non-container 123:number         .
     .┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┊━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
     .                                                  ┊                                                 .
   ]
@@ -3198,7 +3198,7 @@ recipe foo2 [
     .                                                                                                    .
     .                                                                                                    .
     .                                                                                                    .
-    .unknown element foo in container number            foo2: 'get' on a non-container 123:number        .
+    .unknown element foo in container number            foo: 'get' on a non-container 123:number         .
     .                                                                                                    .
   ]
 ]