summaryrefslogtreecommitdiffstats
path: root/testing-client
diff options
context:
space:
mode:
Diffstat (limited to 'testing-client')
-rw-r--r--testing-client/src/org/aspectj/testing/Tester.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing-client/src/org/aspectj/testing/Tester.java b/testing-client/src/org/aspectj/testing/Tester.java
index 234be53ca..afd37a492 100644
--- a/testing-client/src/org/aspectj/testing/Tester.java
+++ b/testing-client/src/org/aspectj/testing/Tester.java
@@ -225,8 +225,8 @@ public class Tester {
}
int n = value.length;
if (n != expectedValue.length) {
- checkFailed(message+" expected array of length "+n
- +" got "+expectedValue.length);
+ checkFailed(message+" expected array of length "+expectedValue.length
+ +" got "+ n);
return;
}
for(int i=0; i<n; i++) {