From 6908e0d5facd31ed32046df03a09040c964be0b3 Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Tue, 26 Dec 2023 13:55:18 +0100 Subject: [PATCH] fix: add missing skip in s3 driver test Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- registry/storage/driver/s3-aws/s3_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/registry/storage/driver/s3-aws/s3_test.go b/registry/storage/driver/s3-aws/s3_test.go index d79898011..e00b57717 100644 --- a/registry/storage/driver/s3-aws/s3_test.go +++ b/registry/storage/driver/s3-aws/s3_test.go @@ -203,6 +203,8 @@ func TestEmptyRootList(t *testing.T) { } func TestClientTransport(t *testing.T) { + skipCheck(t) + testCases := []struct { skipverify bool }{ @@ -243,7 +245,7 @@ func TestClientTransport(t *testing.T) { return } // if tc.skipverify is false we do not override the driver - // HTTP clien transport and leave it to the AWS SDK. + // HTTP client transport and leave it to the AWS SDK. if s3drv.S3.Client.Config.HTTPClient.Transport != nil { t.Errorf("unexpected S3 driver client transport") }