start fixing up the tests on the new struct implementations

This commit is contained in:
idk
2021-04-25 02:09:12 -04:00
parent 3adf694c25
commit 0aa32b4aad

View File

@ -115,7 +115,6 @@ func (certificate Certificate) Length() (length int, err error) {
"reason": "certificate contains data beyond length", "reason": "certificate contains data beyond length",
}).Warn("certificate format warning") }).Warn("certificate format warning")
err = errors.New("certificate parsing warning: certificate contains data beyond length") err = errors.New("certificate parsing warning: certificate contains data beyond length")
//length = certificate.CertLen
length = certificate.CertLen length = certificate.CertLen
return return
} }