diff --git a/s2a_e2e_test.go b/s2a_e2e_test.go index 3802599..cc02010 100644 --- a/s2a_e2e_test.go +++ b/s2a_e2e_test.go @@ -714,7 +714,7 @@ func startHTTPServer(t *testing.T, resp string) string { } s := http.NewServeMux() s.HandleFunc("/hello", func(w http.ResponseWriter, req *http.Request) { - fmt.Fprintf(w, resp) + fmt.Fprint(w, resp) }) lis, err := tls.Listen("tcp", ":0", &tlsConfig) if err != nil {