From bbd81b017e3bf7b6bcc1f2186b8b3c6c29fbbb72 Mon Sep 17 00:00:00 2001 From: Samuel Laferriere Date: Wed, 16 Oct 2024 14:24:10 +0100 Subject: [PATCH] style: startMinio -> startMinIO --- e2e/setup.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/setup.go b/e2e/setup.go index c306e558..5d352cfb 100644 --- a/e2e/setup.go +++ b/e2e/setup.go @@ -48,7 +48,7 @@ var ( ) func init() { - err := startMinioContainer() + err := startMinIOContainer() if err != nil { panic(err) } @@ -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()