about summary refs log tree commit diff stats
path: root/051scenario_test.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-17 00:31:55 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-17 00:31:55 -0700
commit08f4628e8b858120fe3547d8e5431d9abfe46bf8 (patch)
tree4d9f1bc0039baefa0e84d9cb3ea6634f4337d342 /051scenario_test.mu
parent58a9f7c34e21541f2db90b7fb66f4e92f04780ef (diff)
downloadmu-08f4628e8b858120fe3547d8e5431d9abfe46bf8.tar.gz
3379
Can't use type abbreviations inside 'memory-should-contain'.
Diffstat (limited to '051scenario_test.mu')
-rw-r--r--051scenario_test.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/051scenario_test.mu b/051scenario_test.mu
index c9f10d27..bab22e76 100644
--- a/051scenario_test.mu
+++ b/051scenario_test.mu
@@ -33,9 +33,9 @@ scenario scenario_with_multiple_comments_in_mu [
 scenario check_text_in_memory [
   run [
     10:number <- copy 3
-    11:character <- copy 97  # 'a'
-    12:character <- copy 98  # 'b'
-    13:character <- copy 99  # 'c'
+    11:char <- copy 97  # 'a'
+    12:char <- copy 98  # 'b'
+    13:char <- copy 99  # 'c'
   ]
   memory-should-contain [
     10:array:character <- [abc]