From a6685ef272d681c82b0bd1526c2150a97b7b2b1b Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Wed, 26 May 2010 07:08:19 +0000 Subject: [PATCH] Cosmetics. --- .../org/eclipse/cdt/core/testplugin/util/BaseTestCase.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.core.tests/suite/org/eclipse/cdt/core/testplugin/util/BaseTestCase.java b/core/org.eclipse.cdt.core.tests/suite/org/eclipse/cdt/core/testplugin/util/BaseTestCase.java index 6bd29d19242..5293284af24 100644 --- a/core/org.eclipse.cdt.core.tests/suite/org/eclipse/cdt/core/testplugin/util/BaseTestCase.java +++ b/core/org.eclipse.cdt.core.tests/suite/org/eclipse/cdt/core/testplugin/util/BaseTestCase.java @@ -156,15 +156,15 @@ public class BaseTestCase extends TestCase { } if (statusLog.size() != fExpectedLoggedNonOK) { - StringBuffer msg= new StringBuffer("Expected number ("+fExpectedLoggedNonOK+") of "); - msg.append("non-OK status objects differs from actual ("+statusLog.size()+").\n"); + StringBuffer msg= new StringBuffer("Expected number (" + fExpectedLoggedNonOK + ") of "); + msg.append("non-OK status objects differs from actual (" + statusLog.size() + ").\n"); Throwable cause= null; if (!statusLog.isEmpty()) { for (IStatus status : statusLog) { IStatus[] ss= {status}; ss= status instanceof MultiStatus ? ((MultiStatus) status).getChildren() : ss; for (IStatus s : ss) { - msg.append("\t" + s.getMessage()+" "); + msg.append("\t" + s.getMessage() + " "); Throwable t= s.getException(); cause= cause != null ? cause : t;