Remove over 100 whitespaces from logger filename which causes the unit
tests to fail in some development environments.
Change-Id: I068f4d4562b635b19889c3537282949665348c21
Issue-ID: SO-604
Signed-off-by: Michal Kabaj <michal.kabaj@nokia.com>
public final void cleanAuditLogFile() throws FileNotFoundException {
URL url = this.getClass().getClassLoader().getResource("logback-test.xml");
String logFile = url.getFile().substring(0, url.getFile().indexOf("test-classes"))
- + "/MSO/Test/auditjbo ss.server.name_IS_UNDEFINED.log";
+ + "/MSO/Test/auditjbo.server.name_IS_UNDEFINED.log";
PrintWriter asdcConfigFileWriter = new PrintWriter(logFile);
asdcConfigFileWriter.print("");
asdcConfigFileWriter.flush();