mirror of
https://github.com/github/codeql.git
synced 2026-08-05 18:03:27 +02:00
17 lines
266 B
Go
17 lines
266 B
Go
package main
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestSomethingExciting(t *testing.T) {
|
|
transport := &http.Transport{
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, // OK
|
|
}
|
|
doStuffTo(transport)
|
|
}
|
|
|
|
func doStuffTo(t *http.Transport) {}
|