X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Ffile_log_test.cc;h=0d60753fd487c8208b99a45edd488355d1b223d3;hb=b42ff884dd808631859d2f044e8efbd19153937e;hp=1cf7a7757cf39e3dda7ee9aef93fea51cbbb294b;hpb=8749d5a9ea25ba94ab50e6755d1b7033a8bb6004;p=dcpomatic.git diff --git a/test/file_log_test.cc b/test/file_log_test.cc index 1cf7a7757..0d60753fd 100644 --- a/test/file_log_test.cc +++ b/test/file_log_test.cc @@ -17,8 +17,9 @@ */ +#include "lib/file_log.h" #include -#include "lib/log.h" +#include using std::cout; @@ -26,5 +27,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"); }