Skip to content

Commit

Permalink
Remove warn param.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Dec 1, 2021
1 parent 3afbc40 commit b681d87
Showing 1 changed file with 2 additions and 4 deletions.
Expand Up @@ -99,8 +99,7 @@ public void testPluginExecution() throws Exception {
.withProjectDir(folder)
.withArguments("build",
"-D" + ByteBuddyPlugin.LEGACY + "=true",
"-Dorg.gradle.unsafe.configuration-cache=true",
"-Dorg.gradle.unsafe.configuration-cache-problems=warn")
"-Dorg.gradle.unsafe.configuration-cache=true")
.withPluginClasspath()
.build();
BuildTask task = result.task(":byteBuddy");
Expand Down Expand Up @@ -151,8 +150,7 @@ public void testPluginWithArgumentsExecution() throws Exception {
.withProjectDir(folder)
.withArguments("build",
"-D" + ByteBuddyPlugin.LEGACY + "=true",
"-Dorg.gradle.unsafe.configuration-cache=true",
"-Dorg.gradle.unsafe.configuration-cache-problems=warn")
"-Dorg.gradle.unsafe.configuration-cache=true")
.withPluginClasspath()
.build();
BuildTask task = result.task(":byteBuddy");
Expand Down

0 comments on commit b681d87

Please sign in to comment.