Skip to content

Commit

Permalink
Use const access key/ secret key defined for minio
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Hausherr <[email protected]>
  • Loading branch information
jabbrwcky committed Sep 30, 2024
1 parent fa635f9 commit 8b0b079
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions providers/s3/s3_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (

"github.com/efficientgo/core/testutil"
"github.com/efficientgo/e2e"
e2edb "github.com/efficientgo/e2e/db"
"github.com/go-kit/log"
"github.com/minio/minio-go/v7/pkg/encrypt"

Expand Down Expand Up @@ -70,8 +71,8 @@ func TestSSECencryption(t *testing.T) {

cfg := s3.Config{
Bucket: bucket,
AccessKey: "Cheescake",
SecretKey: "supersecret",
AccessKey: e2edb.MinioAccessKey,
SecretKey: e2edb.MinioSecretKey,
Endpoint: m.Endpoint("https"),
Insecure: false,
HTTPConfig: exthttp.HTTPConfig{
Expand Down

0 comments on commit 8b0b079

Please sign in to comment.