diff --git a/connection_test.go b/connection_test.go index 06a5ff7a0..13dcac9c7 100644 --- a/connection_test.go +++ b/connection_test.go @@ -829,8 +829,8 @@ func TestBeginCreatesTransaction(t *testing.T) { type EmptyTransporter struct{} -func (t EmptyTransporter) RoundTrip(req *http.Request) (*http.Response, error) { - return snowflakeInsecureTransport.RoundTrip(req) +func (t EmptyTransporter) RoundTrip(*http.Request) (*http.Response, error) { + return nil, nil } func TestGetTransport(t *testing.T) {