Skip to content

Commit

Permalink
Merge branch '2.3.x' into 2.4.x
Browse files Browse the repository at this point in the history
Closes gh-24672
  • Loading branch information
philwebb committed Jan 6, 2021
2 parents 2b497b6 + 52e47c4 commit ac4243d
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -86,7 +86,8 @@ void isMandatoryWhenJsrMetaNullableAnnotationShouldReturnFalse() {
assertThat(parameter.isMandatory()).isFalse();
}

public void isMandatoryWhenJsrNonnullAnnotationShouldReturnTrue() {
@Test
void isMandatoryWhenJsrNonnullAnnotationShouldReturnTrue() {
OperationMethodParameter parameter = new OperationMethodParameter("name",
this.exampleJsr305NonNull.getParameters()[1]);
assertThat(parameter.isMandatory()).isTrue();
Expand Down

0 comments on commit ac4243d

Please sign in to comment.