aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/decl-with-recv.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/decl-with-recv.rs')
-rw-r--r--src/test/run-pass/decl-with-recv.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/decl-with-recv.rs b/src/test/run-pass/decl-with-recv.rs
index 5630d2e2..36487aa8 100644
--- a/src/test/run-pass/decl-with-recv.rs
+++ b/src/test/run-pass/decl-with-recv.rs
@@ -6,9 +6,9 @@ fn main() {
ch <| 10;
let int i <- po;
- check (i == 10);
+ assert (i == 10);
ch <| 11;
auto j <- po;
- check (j == 11);
+ assert (j == 11);
}