From 67545cf4f1d829547f654222ad1fcb26bf769137 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 17 Mar 2021 12:39:50 +0000 Subject: [PATCH] Polish --- .../java/org/springframework/boot/maven/BuildImageTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/intTest/java/org/springframework/boot/maven/BuildImageTests.java b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/intTest/java/org/springframework/boot/maven/BuildImageTests.java index 22e338b349..5994f3725c 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/intTest/java/org/springframework/boot/maven/BuildImageTests.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/intTest/java/org/springframework/boot/maven/BuildImageTests.java @@ -83,7 +83,7 @@ public class BuildImageTests extends AbstractArchiveIntegrationTests { .contains("docker.io/library/build-image-with-repackage:0.0.1.BUILD-SNAPSHOT") .contains("Successfully built image"); ImageReference imageReference = ImageReference.of(ImageName.of("build-image-with-repackage"), - "0.0.1.BUILD-SNAPSHOT"); + "0.0.1.BUILD-SNAPSHOT"); try (GenericContainer container = new GenericContainer<>(imageReference.toString())) { container.waitingFor(Wait.forLogMessage("Launched\\n", 1)).start(); }