Fixes wrong formatting
This commit is contained in:
parent
86ea7df4bc
commit
865a91f509
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue