Skip to content

Commit 3dc7cb1

Browse files
committed
debugging
1 parent 3859685 commit 3dc7cb1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/e2e/proxy_test.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,11 @@ func check3DESDisabled(t *testing.T, proxyURL string, proxyCA []byte) {
517517
t.Fatalf("error loading CA for client config")
518518
}
519519

520-
jar, _ := cookiejar.New(nil)
520+
jar, err := cookiejar.New(nil)
521+
if err != nil {
522+
t.Fatalf("error creating cookie jar: %v", err)
523+
}
524+
521525
tr := &http.Transport{
522526
MaxIdleConns: 10,
523527
IdleConnTimeout: 30 * time.Second,

0 commit comments

Comments
 (0)