From 264d8442da6fcd6598bce079f131c703e541f9c0 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 11 Oct 2016 18:33:54 +0200 Subject: [PATCH] Fix build --- .../org/springframework/boot/cli/ReproIntegrationTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-cli/src/test/java/org/springframework/boot/cli/ReproIntegrationTests.java b/spring-boot-cli/src/test/java/org/springframework/boot/cli/ReproIntegrationTests.java index 0abdb7cfac..ed9f1affa6 100644 --- a/spring-boot-cli/src/test/java/org/springframework/boot/cli/ReproIntegrationTests.java +++ b/spring-boot-cli/src/test/java/org/springframework/boot/cli/ReproIntegrationTests.java @@ -61,7 +61,7 @@ public class ReproIntegrationTests { public void jarFileExtensionNeeded() throws Exception { this.thrown.expect(IllegalStateException.class); this.thrown.expectMessage("is not a JAR file"); - this.cli.jar("secure.groovy"); + this.cli.jar("secure.groovy", "data-jpa.groovy"); } }