Merge pull request #8140 from sharifelgamal/cert-test

do not delete generated certs for functional test
pull/8145/head
Sharif Elgamal 2020-05-13 16:36:29 -07:00 committed by GitHub
commit 462adcb305
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 8 deletions

View File

@ -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)
}()