Skip to content

Commit

Permalink
[#826] Fix test after suppressing warning "Supported source version '…
Browse files Browse the repository at this point in the history
…RELEASE_6' from annotation processor..."
  • Loading branch information
remkop authored Oct 8, 2019
1 parent 9110687 commit a4bdb17
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ public void testCommandWithBundle() {
}

private void assertOnlySourceVersionWarning(Compilation compilation) {
assertThat(compilation).hadWarningCount(1);
assertThat(compilation).hadWarningContaining("Supported source version 'RELEASE_6' from annotation processor 'picocli.annotation.processing.tests");
assertThat(compilation).hadWarningCount(0); // #826 version warnings are now suppressed
// assertThat(compilation).hadWarningContaining("Supported source version 'RELEASE_6' from annotation processor 'picocli.annotation.processing.tests");
}

}
}

0 comments on commit a4bdb17

Please sign in to comment.