Commit 803eddf6 authored by Andy Wilkinson's avatar Andy Wilkinson

Update test to reflect quoting of STOP_WAIT_TIME in launch.script

parent c5e7d83e
...@@ -134,7 +134,7 @@ public class DefaultLaunchScriptTests { ...@@ -134,7 +134,7 @@ public class DefaultLaunchScriptTests {
public void defaultForStopWaitTimeIs60() throws Exception { public void defaultForStopWaitTimeIs60() throws Exception {
DefaultLaunchScript script = new DefaultLaunchScript(null, null); DefaultLaunchScript script = new DefaultLaunchScript(null, null);
String content = new String(script.toByteArray()); String content = new String(script.toByteArray());
assertThat(content).contains("STOP_WAIT_TIME=60"); assertThat(content).contains("STOP_WAIT_TIME=\"60\"");
} }
@Test @Test
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment