Skip to content

Commit

Permalink
fix staticcheck warning about append() usage
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Mar 2, 2024
1 parent 0b6ca07 commit b453896
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions linter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,7 @@ func TestLinterLintAllErrorWorkflowsAtOnce(t *testing.T) {
if err != nil {
panic(err)
}
for _, f := range fs {
files = append(files, f)
}
files = append(files, fs...)

o := LinterOptions{
Shellcheck: shellcheck,
Expand Down

0 comments on commit b453896

Please sign in to comment.