forked from TrueCloudLab/distribution
fix: add missing skip in s3 driver test
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
parent
012adcae7d
commit
6908e0d5fa
1 changed files with 3 additions and 1 deletions
|
@ -203,6 +203,8 @@ func TestEmptyRootList(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestClientTransport(t *testing.T) {
|
func TestClientTransport(t *testing.T) {
|
||||||
|
skipCheck(t)
|
||||||
|
|
||||||
testCases := []struct {
|
testCases := []struct {
|
||||||
skipverify bool
|
skipverify bool
|
||||||
}{
|
}{
|
||||||
|
@ -243,7 +245,7 @@ func TestClientTransport(t *testing.T) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
// if tc.skipverify is false we do not override the driver
|
// 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 {
|
if s3drv.S3.Client.Config.HTTPClient.Transport != nil {
|
||||||
t.Errorf("unexpected S3 driver client transport")
|
t.Errorf("unexpected S3 driver client transport")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue