Skip to content

Commit

Permalink
BVTCK-196 Fix two ConstraintCompositionTest tests using an invalid pa…
Browse files Browse the repository at this point in the history
…rameter values object
  • Loading branch information
gsmet committed Mar 20, 2018
1 parent 7a3938a commit 3004629
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -309,7 +309,7 @@ public void testMixedConstraintTargetsInComposedAndComposingConstraintsCauseExce
"doSomething",
int.class
);
Object[] parameterValues = new Object[0];
Object[] parameterValues = new Object[] { 0 };

getExecutableValidator().validateParameters(
object,
Expand All @@ -327,7 +327,7 @@ public void testMixedConstraintTargetsInComposingConstraintsCauseException() thr
"doSomething",
int.class
);
Object[] parameterValues = new Object[0];
Object[] parameterValues = new Object[] { 0 };

getExecutableValidator().validateParameters(
object,
Expand Down

0 comments on commit 3004629

Please sign in to comment.