Fail on error, rather than printing to stdout

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1073126 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-02-21 20:12:03 +00:00
parent e5d4d44857
commit 0ac31d3cec
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ public class FastMathStrictComparisonTest {
sb.append(" entries ");
sb.append(Arrays.toString(entries));
String message = sb.toString();
final boolean fatal = false;
final boolean fatal = true;
if (fatal) {
Assert.fail(message);
} else {