Procházet zdrojové kódy

Fix Logger class test

Patrick-Christopher Mattulat před 1 rokem
rodič
revize
4477205100
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      test/cases/io/logging/LoggerTest.cpp

+ 1 - 1
test/cases/io/logging/LoggerTest.cpp

@@ -230,7 +230,7 @@ namespace
     dynamic_pointer_cast<FileOutputStream>(writer)->close();
     string content = getContentFromLogFile(logName);
 
-    ASSERT_STREQ(string(message + NewLine::getUnixNewLine()).c_str(), content.c_str());
+    ASSERT_STREQ(string(message + NewLine::get()).c_str(), content.c_str());
   }
 
   TEST_F(LoggerTest, info)