Skip to content

Commit

Permalink
Fix new test added to master since forking
Browse files Browse the repository at this point in the history
  • Loading branch information
Skeen committed Apr 30, 2020
1 parent 73b10da commit e4e0ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tailer/webhookTailer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ func TestArraySelector(t *testing.T) {
}
lines := WebhookProcessBody(config, []byte(json))
expected := fmt.Sprintf("line %v", lineNumber)
if len(lines) != 1 || lines[0] != expected {
if len(lines) != 1 || lines[0].line != expected {
t.Fatalf("Expected: []string{\"%v\"}, Actual: %#v", expected, lines)
}
}
Expand Down

0 comments on commit e4e0ccc

Please sign in to comment.