Browse Source

code quality review

mzz 5 years ago
parent
commit
49b63cbd79
1 changed files with 2 additions and 2 deletions
  1. 2 2
      common/protocol/tls/cert/cert_test.go

+ 2 - 2
common/protocol/tls/cert/cert_test.go

@@ -44,7 +44,7 @@ func generate(domainNames []string, isCA bool, jsonOutput bool, fileOutput strin
 	}
 	}
 
 
 	if jsonOutput {
 	if jsonOutput {
-		printJson(cert)
+		printJSON(cert)
 	}
 	}
 
 
 	if len(fileOutput) > 0 {
 	if len(fileOutput) > 0 {
@@ -61,7 +61,7 @@ type jsonCert struct {
 	Key         []string `json:"key"`
 	Key         []string `json:"key"`
 }
 }
 
 
-func printJson(certificate *Certificate) {
+func printJSON(certificate *Certificate) {
 	certPEM, keyPEM := certificate.ToPEM()
 	certPEM, keyPEM := certificate.ToPEM()
 	jCert := &jsonCert{
 	jCert := &jsonCert{
 		Certificate: strings.Split(strings.TrimSpace(string(certPEM)), "\n"),
 		Certificate: strings.Split(strings.TrimSpace(string(certPEM)), "\n"),