Browse Source

message was wrong way round!

tags/PRE_PIPELINE
aclement 18 years ago
parent
commit
a915b6524c
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      testing-client/src/org/aspectj/testing/Tester.java

+ 2
- 2
testing-client/src/org/aspectj/testing/Tester.java View File

@@ -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++) {

Loading…
Cancel
Save