Skip to content

Commit

Permalink
fix(lint): fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zeljkobekcic committed Oct 15, 2024
1 parent eecaef4 commit 273e9d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func TestSliceWindow(t *testing.T) {

sw, err := NewSliceWindow(input, windowSize)
if err != nil {
t.Fatalf("No SliceWindow has been returned because of error:" + err.Error())
t.Fatalf("No SliceWindow has been returned because of error: %s", err.Error())
}

sw.currentWindowNumber = 0
Expand Down

0 comments on commit 273e9d8

Please sign in to comment.