Tiny finishes.

This commit is contained in:
Ivan Bertona 2020-02-07 19:57:29 -05:00
parent 6843408d42
commit 157686e338
2 changed files with 1 additions and 4 deletions

View file

@ -406,9 +406,6 @@ func (tc *tlsALPN01Challenge) validate(db nosql.DB, jwk *jose.JSONWebKey, vo val
certs := cs.PeerCertificates
if len(certs) == 0 {
// note: it does not seem to be possible to trigger this path, as the Go TLS client will return a dial error
// when no certificate is served
if err = tc.storeError(db,
RejectedIdentifierErr(errors.Errorf("%s challenge for %s resulted in no certificates",
tc.Type, tc.Value))); err != nil {

View file

@ -1509,7 +1509,7 @@ func TestTLSALPN01Validate(t *testing.T) {
res: ch,
}
},
"ok/with-new-oid": func(t *testing.T) test {
"ok": func(t *testing.T) test {
ch, err := newTLSALPNCh()
assert.FatalError(t, err)
_ch, ok := ch.(*tlsALPN01Challenge)