From 4b1533bb2740efc8676fd1351cdb7afec7915c62 Mon Sep 17 00:00:00 2001 From: Itamar Yuran Date: Wed, 25 Dec 2024 16:11:38 +0100 Subject: [PATCH] local host --- esti/s3_gateway_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esti/s3_gateway_test.go b/esti/s3_gateway_test.go index eba0f701c4c..1e6775f7844 100644 --- a/esti/s3_gateway_test.go +++ b/esti/s3_gateway_test.go @@ -188,8 +188,8 @@ func TestS3IfNoneMatch(t *testing.T) { ctx, _, repo := setupTest(t) defer tearDownTest(repo) - - client := createS3Client(endpointURL, t) + endpoint := "http://localhost:8000" + client := createS3Client(endpoint, t) bucketName := "test-bucket" _, err := client.CreateBucket(ctx, &s3.CreateBucketInput{ Bucket: aws.String(bucketName),