do not delete genereated certs for functional test

pull/8140/head
Sharif Elgamal 2020-05-13 14:38:00 -07:00
parent 677c2e47d8
commit a783d08c66
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)
}()