Commit 63a7b24d authored by Andy Wilkinson's avatar Andy Wilkinson

Fix test that was broken in b24e736c

parent b24e736c
...@@ -43,7 +43,7 @@ public class DefaultLaunchScriptTests { ...@@ -43,7 +43,7 @@ public class DefaultLaunchScriptTests {
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, containsString("Spring Boot Startup Script")); assertThat(content, containsString("Spring Boot Startup Script"));
assertThat(content, containsString("mode=\"auto\"")); assertThat(content, containsString("MODE=\"auto\""));
} }
@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