aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/opeq.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/opeq.rs')
-rw-r--r--src/test/run-pass/opeq.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/run-pass/opeq.rs b/src/test/run-pass/opeq.rs
index d99ebb04..0c905ab9 100644
--- a/src/test/run-pass/opeq.rs
+++ b/src/test/run-pass/opeq.rs
@@ -5,18 +5,18 @@ fn main() {
x *= 2;
log x;
- check (x == 2);
+ assert (x == 2);
x += 3;
log x;
- check (x == 5);
+ assert (x == 5);
x *= x;
log x;
- check (x == 25);
+ assert (x == 25);
x /= 5;
log x;
- check (x == 5);
+ assert (x == 5);
}