We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SSL_CERT_FILE
cacerts
1 parent 7482a1e commit d19cb1eCopy full SHA for d19cb1e
integration/gcpkms/gcp_kms_integration_test.go
@@ -23,7 +23,7 @@ import (
23
"path/filepath"
24
"testing"
25
26
- "flag"
+ // Placeholder for internal flag import.
27
// context is used to cancel outstanding requests
28
"google.golang.org/api/option"
29
"github.com/tink-crypto/tink-go/v2/aead"
@@ -38,11 +38,7 @@ var (
38
credFile = "testdata/gcp/credential.json"
39
)
40
41
-func init() {
42
- certPath := filepath.Join(os.Getenv("TEST_SRCDIR"), "tink_base/roots.pem")
43
- flag.Set("cacerts", certPath)
44
- os.Setenv("SSL_CERT_FILE", certPath)
45
-}
+// Placeholder for internal initialization.
46
47
func TestGetAeadWithEnvelopeAead(t *testing.T) {
48
srcDir, ok := os.LookupEnv("TEST_SRCDIR")
0 commit comments