Skip to content

Commit

Permalink
Test typo update
Browse files Browse the repository at this point in the history
  • Loading branch information
abhimanyu003 committed Dec 23, 2021
1 parent 1ee9e8f commit 7bfd297
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions processors/lines_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func TestShuffleLines_Transform(t *testing.T) {
got, _ := p.Transform(tt.args.data, tt.args.opts...)
count := len(strings.Split(got, "\n"))
if count != tt.want {
t.Errorf("ExtractEmails() = %v, want %v", count, tt.want)
t.Errorf("ShuffleLines() = %v, want %v", count, tt.want)
}
})
}
Expand Down Expand Up @@ -240,7 +240,7 @@ func TestUniqueLines_Transform(t *testing.T) {
for i := 0; i < 100; i++ {
p := UniqueLines{}
if got, _ := p.Transform(tt.args.data, tt.args.opts...); got != tt.want {
t.Errorf("SortLines() = %v, want %v", got, tt.want)
t.Errorf("UniqueLines() = %v, want %v", got, tt.want)
}
}
})
Expand Down

0 comments on commit 7bfd297

Please sign in to comment.