diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-03-21 23:06:28 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-03-21 23:06:28 -0700 |
commit | 2103abd30e9dd2956f84304ef77c4d8916cd3557 (patch) | |
tree | 497a963e42225adcbf7b8b51c7bb46268fa4fd95 | |
parent | d57bf669c20f1936af8674d549bfb01c01f68f4f (diff) | |
download | mu-2103abd30e9dd2956f84304ef77c4d8916cd3557.tar.gz |
2805
Fix test failures caused by 2804 in sandbox/ app.
-rw-r--r-- | sandbox/010-errors.mu | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sandbox/010-errors.mu b/sandbox/010-errors.mu index b76c9fc0..d9c2fe79 100644 --- a/sandbox/010-errors.mu +++ b/sandbox/010-errors.mu @@ -184,14 +184,14 @@ scenario run-updates-status-with-first-erroneous-sandbox [ .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━. .0 x. .get foo, x:offset . - .expected a container . + .expected a container in 'get foo, x:offset' . .missing type for foo in 'get foo, x:offset' . .first ingredient of 'get' should be a container, ↩. .but got foo . .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━. .1 x. .get foo, x:offset . - .expected a container . + .expected a container in 'get foo, x:offset' . .missing type for foo in 'get foo, x:offset' . .first ingredient of 'get' should be a container, ↩. .but got foo . @@ -231,14 +231,14 @@ scenario run-updates-status-with-first-erroneous-sandbox-2 [ .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━. .1 x. .get foo, x:offset . - .expected a container . + .expected a container in 'get foo, x:offset' . .missing type for foo in 'get foo, x:offset' . .first ingredient of 'get' should be a container, ↩. .but got foo . .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━. .2 x. .get foo, x:offset . - .expected a container . + .expected a container in 'get foo, x:offset' . .missing type for foo in 'get foo, x:offset' . .first ingredient of 'get' should be a container, ↩. .but got foo . |