Merge branch '2.0' of ssh://git.carlh.net/home/carl/git/dcpomatic2 into 2.0
[dcpomatic.git] / test / file_log_test.cc
index 1cf7a7757cf39e3dda7ee9aef93fea51cbbb294b..29205e40033e27d76753819475354e16c4e3e630 100644 (file)
@@ -17,8 +17,8 @@
 
 */
 
+#include "lib/file_log.h"
 #include <boost/test/unit_test.hpp>
-#include "lib/log.h"
 
 using std::cout;
 
@@ -26,5 +26,5 @@ BOOST_AUTO_TEST_CASE (file_log_test)
 {
        FileLog log ("test/data/short.log");
        BOOST_CHECK_EQUAL (log.head_and_tail (1024), "This is a short log.\nWith only two lines.\n");
-       BOOST_CHECK_EQUAL (log.head_and_tail (8), "This is \n.\n.\n.\no lines.\n");
+       BOOST_CHECK_EQUAL (log.head_and_tail (8), "This is \n .\n .\n .\no lines.\n");
 }