aboutsummaryrefslogtreecommitdiffstats
path: root/testing-client
diff options
context:
space:
mode:
authoraclement <aclement>2006-07-25 11:22:26 +0000
committeraclement <aclement>2006-07-25 11:22:26 +0000
commita915b6524ccb79d365ede0a5c65eefc278eed9c5 (patch)
tree65508e00f26cacff73adc15b7bd5ed4282d225a6 /testing-client
parentee7a4fd3758181c2bf7156407813827def6a06c0 (diff)
downloadaspectj-a915b6524ccb79d365ede0a5c65eefc278eed9c5.tar.gz
aspectj-a915b6524ccb79d365ede0a5c65eefc278eed9c5.zip
message was wrong way round!
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++) {