Ver código fonte

message was wrong way round!

tags/PRE_PIPELINE
aclement 18 anos atrás
pai
commit
a915b6524c
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2
    2
      testing-client/src/org/aspectj/testing/Tester.java

+ 2
- 2
testing-client/src/org/aspectj/testing/Tester.java Ver arquivo

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

Carregando…
Cancelar
Salvar