Skip to content

Commit

Permalink
Remove extraneous debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Philzen committed May 26, 2024
1 parent 2b2f97f commit 8ed8ecb
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1650,8 +1650,6 @@ public void shouldAddNotNullOnRequiredAttributes() throws IOException {

JavaFileAssert.assertThat(Paths.get(outputPath + "/src/main/java/org/openapitools/model/Dummy.java"))
.fileContains( "status", "@NotNull");
Files.readAllLines(Paths.get(outputPath + "/src/main/java/org/openapitools/model/Dummy.java")).forEach(System.out::println);

}

@Test
Expand All @@ -1677,8 +1675,6 @@ public void shouldNotAddNotNullOnReadOnlyAttributes() throws IOException {

JavaFileAssert.assertThat(Paths.get(outputPath + "/src/main/java/org/openapitools/model/Dummy.java"))
.fileContains( "status", "@NotNull");
Files.readAllLines(Paths.get(outputPath + "/src/main/java/org/openapitools/model/Dummy.java")).forEach(System.out::println);

}

@Test
Expand Down

0 comments on commit 8ed8ecb

Please sign in to comment.