From d1d34bf0196abbaee9923bc69d3cef7ce90ca24e Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Thu, 4 May 2017 17:35:54 -0700 Subject: [PATCH] Remove extra Travis logging --- command/agent/http_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/command/agent/http_test.go b/command/agent/http_test.go index 968c33802..90c4eb9bb 100644 --- a/command/agent/http_test.go +++ b/command/agent/http_test.go @@ -440,10 +440,8 @@ func TestHTTP_VerifyHTTPSClient(t *testing.T) { // PASS: Requests that specify a valid hostname, CA cert, and client // certificate succeed. tlsConf.GetClientCertificate = func(*tls.CertificateRequestInfo) (*tls.Certificate, error) { - s.Agent.logger.Printf("Loading certificate") c, err := tls.LoadX509KeyPair(foocert, fookey) if err != nil { - s.Agent.logger.Printf("error loading client certificate: %v", err) return nil, err } return &c, nil