diff options
Diffstat (limited to 'src/test/run-pass/box-unbox.rs')
| -rw-r--r-- | src/test/run-pass/box-unbox.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/box-unbox.rs b/src/test/run-pass/box-unbox.rs index d0ad615b..b1d50533 100644 --- a/src/test/run-pass/box-unbox.rs +++ b/src/test/run-pass/box-unbox.rs @@ -6,5 +6,5 @@ fn main() { let int foo = 17; let box[int] bfoo = tup(@foo); log "see what's in our box"; - check (unbox[int](bfoo) == foo); + assert (unbox[int](bfoo) == foo); } |