save the STK expiry time as a time.Duration

This commit is contained in:
Marten Seemann 2017-04-01 13:41:38 +07:00
parent 81985f44bd
commit 6cc6d49a10
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
3 changed files with 4 additions and 4 deletions

View file

@ -441,7 +441,7 @@ var _ = Describe("Server Crypto Setup", func() {
})
It("REJ messages that have an expired STK", func() {
cs.scfg.stkSource.(*mockStkSource).stkTime = time.Now().Add(-protocol.STKExpiryTimeSec * time.Second).Add(-time.Second)
cs.scfg.stkSource.(*mockStkSource).stkTime = time.Now().Add(-protocol.STKExpiryTime).Add(-time.Second)
Expect(cs.isInchoateCHLO(fullCHLO, cert)).To(BeTrue())
})