about summary refs log tree commit diff stats
path: root/sandbox/010-warnings.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-02 00:41:23 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-04 00:58:04 -0700
commit4379069e8ed25f97822388bbcd7f5f53a0f24d83 (patch)
tree4ae3c014bfc57c009693de58c639cebdd210685c /sandbox/010-warnings.mu
parent662d2a27d14115956015334eae786b74304cfbb8 (diff)
downloadmu-4379069e8ed25f97822388bbcd7f5f53a0f24d83.tar.gz
2236 - all tests passing except one in 'mu sandbox'
Diffstat (limited to 'sandbox/010-warnings.mu')
-rw-r--r--sandbox/010-warnings.mu14
1 files changed, 8 insertions, 6 deletions
diff --git a/sandbox/010-warnings.mu b/sandbox/010-warnings.mu
index 39dc5691..636e71dc 100644
--- a/sandbox/010-warnings.mu
+++ b/sandbox/010-warnings.mu
@@ -80,8 +80,8 @@ scenario run-instruction-and-print-warnings [
     .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
     .                                                 x.
     .get 1:address:point, 1:offset                     .
-    .interactive: first ingredient of 'get' should be ↩.
-    .a container, but got 1:address:point              .
+    .first ingredient of 'get' should be a container, ↩.
+    .but got 1:address:point                           .
     .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
     .                                                  .
   ]
@@ -91,8 +91,8 @@ scenario run-instruction-and-print-warnings [
     .                                                  .
     .                                                  .
     .                                                  .
-    .interactive: first ingredient of 'get' should be  .
-    .a container, but got 1:address:point              .
+    .first ingredient of 'get' should be a container,  .
+    .but got 1:address:point                           .
     .                                                  .
     .                                                  .
   ]
@@ -120,6 +120,8 @@ scenario run-instruction-and-print-warnings-only-once [
     .                                                 x.
     .get 1234:number, foo:offset                       .
     .unknown element foo in container number           .
+    .first ingredient of 'get' should be a container, ↩.
+    .but got 1234:number                               .
     .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
     .                                                  .
   ]
@@ -174,7 +176,7 @@ foo 4, 0]
     .                                                 x.
     .stash [abc]                                       .
     .foo 4, 0                                          .
-    .interactive: undefined operation in 'foo 4, 0'    .
+    .undefined operation in 'foo 4, 0'                 .
     .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
     .                                                  .
   ]
@@ -194,7 +196,7 @@ foo 4, 0]
     .stash [abc]                                       .
     .foo 4, 0                                          .
     .abc                                               .
-    .interactive: undefined operation in 'foo 4, 0'    .
+    .undefined operation in 'foo 4, 0'                 .
     .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
     .                                                  .
   ]