Fixes wrong formatting

This commit is contained in:
Nino Khodabandeh 2016-04-26 16:30:13 -07:00
parent 86ea7df4bc
commit 865a91f509
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ func TestStopAtEOF(t *testing.T) {
// read "hello" // read "hello"
line := <-tail.Lines line := <-tail.Lines
if line.Text != "hello" { 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) tailTest.VerifyTailOutput(tail, []string{"there", "world"}, false)