From 803eddf6b204ca755272a2919095cee45056176c Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 4 Jan 2017 21:39:16 +0000 Subject: [PATCH] Update test to reflect quoting of STOP_WAIT_TIME in launch.script --- .../boot/loader/tools/DefaultLaunchScriptTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/DefaultLaunchScriptTests.java b/spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/DefaultLaunchScriptTests.java index 92c1012a52..209d9d1b58 100644 --- a/spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/DefaultLaunchScriptTests.java +++ b/spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/DefaultLaunchScriptTests.java @@ -134,7 +134,7 @@ public class DefaultLaunchScriptTests { public void defaultForStopWaitTimeIs60() throws Exception { DefaultLaunchScript script = new DefaultLaunchScript(null, null); String content = new String(script.toByteArray()); - assertThat(content).contains("STOP_WAIT_TIME=60"); + assertThat(content).contains("STOP_WAIT_TIME=\"60\""); } @Test