From 865a91f5096d0e25fadb7bab42fa1a1986c5a895 Mon Sep 17 00:00:00 2001 From: Nino Khodabandeh Date: Tue, 26 Apr 2016 16:30:13 -0700 Subject: [PATCH] Fixes wrong formatting --- tail_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tail_test.go b/tail_test.go index 4ac6e09..609303b 100644 --- a/tail_test.go +++ b/tail_test.go @@ -103,7 +103,7 @@ func TestStopAtEOF(t *testing.T) { // read "hello" line := <-tail.Lines if line.Text != "hello" { - t.Errorf("Expected to get 'hello', got '%s' instead", line) + t.Errorf("Expected to get 'hello', got '%s' instead", line.Text) } tailTest.VerifyTailOutput(tail, []string{"there", "world"}, false)