Ignore buildpack deprecation warnings in Paketo system tests

Fixes gh-29885
This commit is contained in:
Scott Frederick
2022-02-23 17:56:21 -06:00
parent acd1ba0eca
commit 59ffe28639
2 changed files with 15 additions and 1 deletions

View File

@@ -122,6 +122,7 @@ class PaketoBuilderTests {
container.waitingFor(Wait.forHttp("/test")).start();
container.stop();
}
this.gradleBuild.expectDeprecationMessages("BOM table is deprecated in this buildpack api version");
result = buildImage(imageName);
assertThat(result.task(":bootBuildImage").getOutcome()).isEqualTo(TaskOutcome.SUCCESS);
try (GenericContainer<?> container = new GenericContainer<>(imageName).withExposedPorts(8080)) {