Skip to content

Commit

Permalink
review revisions
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Keister <[email protected]>
  • Loading branch information
grokspawn committed Feb 7, 2025
1 parent 92f5b29 commit ac872de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ linters:
- errorlint
- gci
- gofmt
- govet
- gosec
- importas
- misspell
Expand Down
4 changes: 2 additions & 2 deletions alpha/action/migrate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func TestMigrate(t *testing.T) {
return
}
actualFS := os.DirFS(s.migrate.OutputDir)
_ = fs.WalkDir(actualFS, ".", func(path string, d fs.DirEntry, err error) error {
require.NoError(t, fs.WalkDir(actualFS, ".", func(path string, d fs.DirEntry, err error) error {
require.NoError(t, err)
if d.IsDir() {
return nil
Expand All @@ -136,7 +136,7 @@ func TestMigrate(t *testing.T) {
require.True(t, ok, "output directory contained unexpected file %q", path)
require.Equal(t, expectedData, string(actualData))
return nil
})
}))
})
}
}
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/bundle_image_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ func pushLoadImages(client *kubernetes.Clientset, w io.Writer, images ...string)
}
} else {
for _, image := range images {
err = pushWith("docker", image)
err := pushWith("docker", image)
if err != nil {
return err
}
Expand Down

0 comments on commit ac872de

Please sign in to comment.