diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-11-21 09:26:30 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-11-21 09:27:25 -0800 |
commit | 167d0ca0d62f46598ea7385a11fa64ec935b5269 (patch) | |
tree | 8d6031f7fa1830ccdf71d391aeec1e35d4966c32 /edit | |
parent | fe9f07155abf6e5326d0e27c1b367181f0fcbfa8 (diff) | |
download | mu-167d0ca0d62f46598ea7385a11fa64ec935b5269.tar.gz |
2466 - eliminate ':string' from scenarios
Diffstat (limited to 'edit')
-rw-r--r-- | edit/005-sandbox.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/edit/005-sandbox.mu b/edit/005-sandbox.mu index 79da2409..d6e8b8a4 100644 --- a/edit/005-sandbox.mu +++ b/edit/005-sandbox.mu @@ -500,6 +500,6 @@ scenario editor-provides-edited-contents [ 4:array:character <- copy *3:address:array:character ] memory-should-contain [ - 4:string <- [abdefc] + 4:array:character <- [abdefc] ] ] |