diff options
Diffstat (limited to 'src/crypto/tls/handshake_server_test.go')
| -rw-r--r-- | src/crypto/tls/handshake_server_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crypto/tls/handshake_server_test.go b/src/crypto/tls/handshake_server_test.go index 432b4cfe35..756d288cb3 100644 --- a/src/crypto/tls/handshake_server_test.go +++ b/src/crypto/tls/handshake_server_test.go @@ -1989,7 +1989,7 @@ func TestServerHandshakeContextCancellation(t *testing.T) { // TestHandshakeContextHierarchy tests whether the contexts // available to GetClientCertificate and GetCertificate are // derived from the context provided to HandshakeContext, and -// that those contexts are cancelled after HandshakeContext has +// that those contexts are canceled after HandshakeContext has // returned. func TestHandshakeContextHierarchy(t *testing.T) { c, s := localPipe(t) @@ -2024,7 +2024,7 @@ func TestHandshakeContextHierarchy(t *testing.T) { select { case <-innerCtx.Done(): default: - t.Errorf("GetClientCertificate context was not cancelled after HandshakeContext returned.") + t.Errorf("GetClientCertificate context was not canceled after HandshakeContext returned.") } }() var innerCtx context.Context @@ -2048,7 +2048,7 @@ func TestHandshakeContextHierarchy(t *testing.T) { select { case <-innerCtx.Done(): default: - t.Errorf("GetCertificate context was not cancelled after HandshakeContext returned.") + t.Errorf("GetCertificate context was not canceled after HandshakeContext returned.") } if err := <-clientErr; err != nil { t.Errorf("Unexpected client error: %v", err) |
