Commit 786dae5d authored by Stephane Nicoll's avatar Stephane Nicoll

Use "release notes" in message as it is more generic

parent 23c55498
......@@ -71,7 +71,7 @@ class PropertiesMigrationReport {
"%nThe use of configuration keys that are no longer supported was found in the environment:%n%n"));
append(report, content);
report.append(String.format("%n"));
report.append("Please refer to the migration guide or reference guide for potential alternatives.");
report.append("Please refer to the release notes or reference guide for potential alternatives.");
report.append(String.format("%n"));
return report.toString();
}
......
......@@ -50,7 +50,7 @@ class PropertiesMigrationListenerTests {
this.context = createSampleApplication().run("--logging.file=test.log");
assertThat(output).contains("commandLineArgs").contains("logging.file.name")
.contains("Each configuration key has been temporarily mapped")
.doesNotContain("Please refer to the migration guide");
.doesNotContain("Please refer to the release notes");
}
private SpringApplication createSampleApplication() {
......
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