C++11 tidying.
[dcpomatic.git] / test / file_log_test.cc
index e0eeba0101ef074e91e3a242a27f614c5f6d1570..dca1d43866c83371e14e77b276e80c5abbd46f89 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 /** @file  test/file_log_test.cc
  *  @brief Test FileLog.
  *  @ingroup selfcontained
  */
 
+
 #include "lib/file_log.h"
 #include <boost/test/unit_test.hpp>
-#include <iostream>
 
-using std::cout;
 
 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(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");
 }