aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/while-with-break.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/while-with-break.rs')
-rw-r--r--src/test/run-pass/while-with-break.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/while-with-break.rs b/src/test/run-pass/while-with-break.rs
index 0e27f252..2adaf24b 100644
--- a/src/test/run-pass/while-with-break.rs
+++ b/src/test/run-pass/while-with-break.rs
@@ -11,5 +11,5 @@ fn main() {
break;
}
}
- check(i == 95);
+ assert (i == 95);
}