Missed the last combination

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@684679 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2008-08-11 08:59:35 +00:00
parent e7c3df714b
commit 7432d1e1ef
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ public class CombinatorialTestHelper {
* Affirms if this receiver has more combinations. * Affirms if this receiver has more combinations.
*/ */
public boolean hasMoreCombination() { public boolean hasMoreCombination() {
return cursor < combos.length-1; return cursor < combos.length;
} }
/** /**