From a783d08c6647744d77426414047837a1584bdf79 Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Wed, 13 May 2020 14:38:00 -0700 Subject: [PATCH] do not delete genereated certs for functional test --- test/integration/functional_test.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index e2e716288d..60b3011377 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -69,14 +69,6 @@ func TestFunctional(t *testing.T) { if err := os.Remove(p); err != nil { t.Logf("unable to remove %q: %v", p, err) } - p = localTestCertPath() - if err := os.Remove(p); err != nil { - t.Logf("unable to remove %q: %v", p, err) - } - p = localEmptyCertPath() - if err := os.Remove(p); err != nil { - t.Logf("unable to remove %q: %v", p, err) - } Cleanup(t, profile, cancel) }()