about summary refs log tree commit diff stats
path: root/083scenario_screen_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 /083scenario_screen_test.mu
parent58a9f7c34e21541f2db90b7fb66f4e92f04780ef (diff)
downloadmu-08f4628e8b858120fe3547d8e5431d9abfe46bf8.tar.gz
3379
Can't use type abbreviations inside 'memory-should-contain'.
Diffstat (limited to '083scenario_screen_test.mu')
-rw-r--r--083scenario_screen_test.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/083scenario_screen_test.mu b/083scenario_screen_test.mu
index c96b6e56..04fb364f 100644
--- a/083scenario_screen_test.mu
+++ b/083scenario_screen_test.mu
@@ -4,7 +4,7 @@ scenario print-character-at-top-left-2 [
   assume-screen 3/width, 2/height
   run [
     local-scope
-    a:character <- copy 97/a
+    a:char <- copy 97/a
     screen:address:screen <- print screen:address:screen, a
   ]
   screen-should-contain [
@@ -18,7 +18,7 @@ scenario clear-line-erases-printed-characters-2 [
   run [
     local-scope
     # print a character
-    a:character <- copy 97/a
+    a:char <- copy 97/a
     screen:address:screen <- print screen:address:screen, a
     # move cursor to start of line
     screen:address:screen <- move-cursor screen:address:screen, 0/row, 0/column