From 760e415dcc3d7c48a286793859861c791dbf60b3 Mon Sep 17 00:00:00 2001 From: Will Pimblett Date: Sun, 15 Dec 2019 17:27:05 +0000 Subject: [PATCH] Disable VCR for TestAnchorExternalHTTPSMissingChain VCR doesn't seem to encode enough for this test to pass with the mocked result. --- htmltest/check-link_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htmltest/check-link_test.go b/htmltest/check-link_test.go index 3e6de37..d0474d3 100644 --- a/htmltest/check-link_test.go +++ b/htmltest/check-link_test.go @@ -162,7 +162,7 @@ func TestAnchorExternalHTTPSMissingChain(t *testing.T) { // should support https aia // see issue #130 hT := tTestFileOpts("fixtures/links/https-incomplete-chain.html", - map[string]interface{}{"VCREnable": true}) + map[string]interface{}{"VCREnable": false}) tExpectIssue(t, hT, "incomplete certificate chain", 1) }