Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
fix occurrences in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hilmarf committed Feb 7, 2023
1 parent 86b8294 commit 8d607ce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ void checkResponseIsBadRequestForInvalidExposureWindowPayloadCardinality(final I
}

@ParameterizedTest
@ValueSource(ints = { 3, 4 })
@ValueSource(ints = { 4, 5 })
void checkResponseIsBadRequestForInvalidKeySubmissionCardinality(final Integer cardinality)
throws Exception {
final PPADataRequestAndroid payload = buildPayloadWithKeySubmission(getJwsPayloadValues(),
Expand Down Expand Up @@ -531,7 +531,7 @@ void checkResponseIsNotBadRequestForValidExposureWindowPayloadCardinality(final
}

@ParameterizedTest
@ValueSource(ints = { 0, 1 })
@ValueSource(ints = { 0, 1, 2, 3 })
void checkResponseIsNotBadRequestForValidKeySubmissionCardinality(final Integer cardinality)
throws Exception {
final PPADataRequestAndroid payload = buildPayloadWithKeySubmission(getJwsPayloadValues(),
Expand Down

0 comments on commit 8d607ce

Please sign in to comment.