summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-11-06 23:15:49 +0000
committerCarl Hetherington <cth@carlh.net>2014-11-06 23:15:49 +0000
commit8749d5a9ea25ba94ab50e6755d1b7033a8bb6004 (patch)
tree17b4f63e065c6678cf112fd862c785d3e225b595 /test
parent009e4abb14cfcaecc0de8fab179adc7bd5feffd4 (diff)
Fix log head/tail functions.
Diffstat (limited to 'test')
-rw-r--r--test/file_log_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/file_log_test.cc b/test/file_log_test.cc
index 4769503c1..1cf7a7757 100644
--- a/test/file_log_test.cc
+++ b/test/file_log_test.cc
@@ -25,5 +25,6 @@ using std::cout;
BOOST_AUTO_TEST_CASE (file_log_test)
{
FileLog log ("test/data/short.log");
- BOOST_CHECK_EQUAL (log.head_and_tail(), "This is a short log.\nWith only two 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");
}