From 48df64c11f1c6c13e63cef6128e8cfbb2bef2864 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Sat, 26 Aug 2006 18:50:56 +0000 Subject: [PATCH] whitespace git-svn-id: https://svn.apache.org/repos/asf/ant/antlibs/antunit/trunk@437206 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/ant/antunit/AntUnit.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main/org/apache/ant/antunit/AntUnit.java b/src/main/org/apache/ant/antunit/AntUnit.java index 4ceb6e4..94d2049 100644 --- a/src/main/org/apache/ant/antunit/AntUnit.java +++ b/src/main/org/apache/ant/antunit/AntUnit.java @@ -164,10 +164,12 @@ public class AntUnit extends Task { getProject().setNewProperty(errorProperty, "true"); } if (failOnError) { - throw new BuildException(ERROR_TESTS_FAILED - + failures + " failure" + (failures != 1 ? "s" : "") - + " and " - + errors + " error" + (errors != 1 ? "s" : "")); + throw new BuildException(ERROR_TESTS_FAILED + + failures + " failure" + + (failures != 1 ? "s" : "") + + " and " + + errors + " error" + + (errors != 1 ? "s" : "")); } } }