From f469c25730aaa711b8327be068514c944074cce4 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 22 Jul 2015 03:21:20 +0900 Subject: Add --header-lines option --- src/reader_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/reader_test.go') diff --git a/src/reader_test.go b/src/reader_test.go index 144a3ff1..00b9e337 100644 --- a/src/reader_test.go +++ b/src/reader_test.go @@ -10,7 +10,7 @@ func TestReadFromCommand(t *testing.T) { strs := []string{} eb := util.NewEventBox() reader := Reader{ - pusher: func(s string) { strs = append(strs, s) }, + pusher: func(s string) bool { strs = append(strs, s); return true }, eventBox: eb} // Check EventBox -- cgit v1.2.3