Skip to content

Commit

Permalink
fix: add missing skip in s3 driver test (#4219)
Browse files Browse the repository at this point in the history
  • Loading branch information
milosgajdos committed Dec 27, 2023
2 parents 012adca + 6908e0d commit 316e409
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion registry/storage/driver/s3-aws/s3_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@ func TestEmptyRootList(t *testing.T) {
}

func TestClientTransport(t *testing.T) {
skipCheck(t)

testCases := []struct {
skipverify bool
}{
Expand Down Expand Up @@ -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")
}
Expand Down

0 comments on commit 316e409

Please sign in to comment.