From 9cfa35003ce361c3df4d53465d41b724bcee5018 Mon Sep 17 00:00:00 2001 From: NikitaSmall Date: Thu, 9 Nov 2023 15:55:36 +0200 Subject: [PATCH] correct minio tests --- embedded/remotestorage/s3/s3_with_minio_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/embedded/remotestorage/s3/s3_with_minio_test.go b/embedded/remotestorage/s3/s3_with_minio_test.go index 6c39f64285..63d11e18da 100644 --- a/embedded/remotestorage/s3/s3_with_minio_test.go +++ b/embedded/remotestorage/s3/s3_with_minio_test.go @@ -37,11 +37,14 @@ func TestS3WithServer(t *testing.T) { s, err := Open( "http://localhost:9000", + false, + "", "minioadmin", "minioadmin", "immudb", "", fmt.Sprintf("prefix_%x", randomBytes), + "", ) require.NoError(t, err)