Skip to content

Commit

Permalink
style: startMinio -> startMinIO
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed Oct 16, 2024
1 parent e37411f commit bbd81b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var (
)

func init() {
err := startMinioContainer()
err := startMinIOContainer()
if err != nil {
panic(err)
}
Expand All @@ -58,8 +58,8 @@ func init() {
}
}

// startMinioContainer starts a MinIO container and sets the minioEndpoint global variable
func startMinioContainer() error {
// startMinIOContainer starts a MinIO container and sets the minioEndpoint global variable
func startMinIOContainer() error {
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()

Expand Down

0 comments on commit bbd81b0

Please sign in to comment.