From 5008c30354568408acf2c9e6ea43504ab2ae7117 Mon Sep 17 00:00:00 2001 From: Arinto Murdopo Date: Fri, 4 Oct 2019 07:40:35 +0700 Subject: [PATCH] Skip client TLS verification --- runner/run_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/runner/run_test.go b/runner/run_test.go index 23a22040..b93e8f12 100644 --- a/runner/run_test.go +++ b/runner/run_test.go @@ -670,6 +670,7 @@ func TestRunUnarySecure(t *testing.T) { WithDialTimeout(time.Duration(20*time.Second)), WithData(data), WithRootCertificate("../testdata/localhost.crt"), + WithSkipTLSVerify(true), ) assert.NoError(t, err)