Avoid * in filenames

parent 0cff8393
......@@ -395,7 +395,8 @@ func TestServerRunWithSNI(t *testing.T) {
}
specToName := func(spec TestCertSpec) string {
return spec.host + "_" + strings.Join(spec.names, ",") + "_" + strings.Join(spec.ips, ",")
name := spec.host + "_" + strings.Join(spec.names, ",") + "_" + strings.Join(spec.ips, ",")
return strings.Replace(name, "*", "star", -1)
}
NextTest:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment