From 0675a8fd1fa274c52cc05cc0cc0bf4f1feaa5dd4 Mon Sep 17 00:00:00 2001 From: Colin Sullivan Date: Thu, 19 Nov 2015 16:22:57 -0700 Subject: [PATCH] Update test to include expanded cipher suite. --- server/opts_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/opts_test.go b/server/opts_test.go index a1b0cefc..6bb2dbf5 100644 --- a/server/opts_test.go +++ b/server/opts_test.go @@ -106,6 +106,7 @@ func TestTLSConfigFile(t *testing.T) { tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, // tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, + tls.TLS_RSA_WITH_RC4_128_SHA, } if !reflect.DeepEqual(tlsConfig.CipherSuites, ciphers) { t.Fatalf("Got incorrect cipher suite list: [%+v]", tlsConfig.CipherSuites)