Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
micryc authored and frantuma committed Sep 16, 2024
1 parent ca9a21e commit 19df1b6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public void testFieldArraySchemaAnnotation() {
@Test(description = "@Pattern correctly handled in type parameters of properties using collections when using oas 3.1.0")
public void testModelUsingCollectionTypePropertyDoesNotHandlePatternAnnotationForOas31() {

String expectedYaml = "DtoUsingPatternOnCollection:\n" +
String expectedYaml = "ClassWithUsingPatternOnCollection:\n" +
" type: object\n" +
" properties:\n" +
" myField:\n" +
Expand Down Expand Up @@ -269,7 +269,7 @@ public void setMyField(List<String> myField) {
@Test(description = "@Size correctly handled in properties using collections when using oas 3.1.0")
public void testModelUsingCollectionTypePropertyDoesNotHandleSizeAnnotationForOas31() {

String expectedYaml = "DtoUsingSizeOnCollection:\n" +
String expectedYaml = "ClassWithUsingSizeOnCollection:\n" +
" type: object\n" +
" properties:\n" +
" myField:\n" +
Expand Down

0 comments on commit 19df1b6

Please sign in to comment.