Skip to content

Commit 803eddf

Browse files
committed
Update test to reflect quoting of STOP_WAIT_TIME in launch.script
1 parent c5e7d83 commit 803eddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/DefaultLaunchScriptTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public void defaultForModeIsAuto() throws Exception {
134134
public void defaultForStopWaitTimeIs60() throws Exception {
135135
DefaultLaunchScript script = new DefaultLaunchScript(null, null);
136136
String content = new String(script.toByteArray());
137-
assertThat(content).contains("STOP_WAIT_TIME=60");
137+
assertThat(content).contains("STOP_WAIT_TIME=\"60\"");
138138
}
139139

140140
@Test

0 commit comments

Comments
 (0)