Skip to content

Commit 34bc4c0

Browse files
committed
update tests
1 parent ba2d025 commit 34bc4c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/openapi-generator/src/test/java/org/openapitools/codegen/kotlin/spring/KotlinSpringServerCodegenTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,9 +405,9 @@ public void testNullableMultipartFile() throws IOException {
405405
assertFileContains(Paths.get(outputPath + "/src/main/kotlin/org/openapitools/api/NullableMultipartfileArrayApiController.kt"),
406406
"files: Array<org.springframework.web.multipart.MultipartFile>?)");
407407
assertFileContains(Paths.get(outputPath + "/src/main/kotlin/org/openapitools/api/NonNullableMultipartfileApiController.kt"),
408-
"file: org.springframework.web.multipart.MultipartFile)");
408+
"file: org.springframework.web.multipart.MultipartFile?)");
409409
assertFileContains(Paths.get(outputPath + "/src/main/kotlin/org/openapitools/api/NonNullableMultipartfileArrayApiController.kt"),
410-
"files: Array<org.springframework.web.multipart.MultipartFile>)");
410+
"files: Array<org.springframework.web.multipart.MultipartFile>?)");
411411
}
412412

413413
@Test

0 commit comments

Comments
 (0)