Remove remaining assumption about File separator from LogFileTests

See gh-15471
pull/15496/head
Andy Wilkinson 6 years ago
parent 3d7e4e99c5
commit ca13385534

@ -93,7 +93,7 @@ public class LogFileTests {
assertThat(logFile.toString())
.isEqualTo("logpath" + File.separatorChar + "spring.log");
assertThat(properties.getProperty(LoggingSystemProperties.LOG_FILE))
.isEqualTo("logpath/spring.log");
.isEqualTo("logpath" + File.separatorChar + "spring.log");
assertThat(properties.getProperty(LoggingSystemProperties.LOG_PATH))
.isEqualTo("logpath");
}

Loading…
Cancel
Save