diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-11-22 11:53:20 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-11-22 11:53:20 -0800 |
commit | c193f23217142a1ae365485f28cba9e1fb8aed15 (patch) | |
tree | 6132c6611dd49494015c819d13bf75f504260fb9 /edit | |
parent | 7136ddd5ac12d3aa4d516f719dea37a027a25b5a (diff) | |
download | mu-c193f23217142a1ae365485f28cba9e1fb8aed15.tar.gz |
2474 - overload 'copy' and 'equal' for text
2473 was the final bugfix holding this back.
Diffstat (limited to 'edit')
-rw-r--r-- | edit/008-sandbox-test.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/edit/008-sandbox-test.mu b/edit/008-sandbox-test.mu index 524000f2..0ba1941e 100644 --- a/edit/008-sandbox-test.mu +++ b/edit/008-sandbox-test.mu @@ -157,7 +157,7 @@ after <render-sandbox-response> [ break-unless sandbox-response expected-response:address:array:character <- get *sandbox, expected-response:offset break-unless expected-response # fall-through to print in grey - response-is-expected?:boolean <- text-equal expected-response, sandbox-response + response-is-expected?:boolean <- equal expected-response, sandbox-response { break-if response-is-expected?:boolean row, screen <- render screen, sandbox-response, left, right, 1/red, row |