Skip to content

Commit

Permalink
Ignore known Mac OS warning (#507)
Browse files Browse the repository at this point in the history
Fixes #506
  • Loading branch information
timtebeek authored Feb 13, 2023
1 parent a6a1fde commit 129d48f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/java/org/openrewrite/maven/BasicIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

@MavenJupiterExtension
@MavenOption(MavenCLIOptions.NO_TRANSFER_PROGRESS)
@SuppressWarnings("NewClassNamingConvention")
class BasicIT {

@MavenTest
Expand All @@ -33,6 +32,8 @@ void null_check_profile_activation(MavenExecutionResult result) {
.isSuccessful()
.out()
.warn()
// Ignore warning logged on Mac OS X; https://github.com/openrewrite/rewrite-maven-plugin/issues/506
.filteredOn(warn -> !"Unable to initialize RocksdbMavenPomCache, falling back to InMemoryMavenPomCache".equals(warn))
.isEmpty();
}

Expand Down

0 comments on commit 129d48f

Please sign in to comment.