Commit b7d020d3 authored by Andy Wilkinson's avatar Andy Wilkinson

Merge branch '2.3.x'

parents 1924aad0 54376346
...@@ -73,13 +73,13 @@ class RunningDocumentationTests { ...@@ -73,13 +73,13 @@ class RunningDocumentationTests {
@TestTemplate @TestTemplate
void bootRunSystemPropertyDefaultValue() throws IOException { void bootRunSystemPropertyDefaultValue() throws IOException {
assertThat(this.gradleBuild.script("src/main/gradle/running/boot-run-system-property") assertThat(this.gradleBuild.script("src/docs/gradle/running/boot-run-system-property")
.build("configuredSystemProperties").getOutput()).contains("com.example.property = default"); .build("configuredSystemProperties").getOutput()).contains("com.example.property = default");
} }
@TestTemplate @TestTemplate
void bootRunSystemPropetry() throws IOException { void bootRunSystemPropetry() throws IOException {
assertThat(this.gradleBuild.script("src/main/gradle/running/boot-run-system-property") assertThat(this.gradleBuild.script("src/docs/gradle/running/boot-run-system-property")
.build("-Pexample=custom", "configuredSystemProperties").getOutput()) .build("-Pexample=custom", "configuredSystemProperties").getOutput())
.contains("com.example.property = custom"); .contains("com.example.property = custom");
} }
......
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