diff --git a/rados/rados_test.go b/rados/rados_test.go index 6ed9a8d..b01d9ed 100644 --- a/rados/rados_test.go +++ b/rados/rados_test.go @@ -14,11 +14,11 @@ import ( "github.com/gofrs/uuid" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/stretchr/testify/suite" + tsuite "github.com/stretchr/testify/suite" ) type RadosTestSuite struct { - suite.Suite + tsuite.Suite conn *Conn ioctx *IOContext pool string @@ -1293,5 +1293,5 @@ func (suite *RadosTestSuite) TestSetGetNamespace() { } func TestRadosTestSuite(t *testing.T) { - suite.Run(t, new(RadosTestSuite)) + tsuite.Run(t, new(RadosTestSuite)) } diff --git a/rgw/admin/radosgw_test.go b/rgw/admin/radosgw_test.go index 6e9ca32..e558a47 100644 --- a/rgw/admin/radosgw_test.go +++ b/rgw/admin/radosgw_test.go @@ -56,7 +56,7 @@ func (c *debugHTTPClient) Do(req *http.Request) (*http.Response, error) { } func TestRadosGWTestSuite(t *testing.T) { - suite.Run(t, new(RadosGWTestSuite)) + tsuite.Run(t, new(RadosGWTestSuite)) } // S3Agent wraps the s3.S3 structure to allow for wrapper methods