Avoid * in filenames

This commit is contained in:
Jordan Liggitt 2017-06-05 11:34:01 -04:00
parent 0cff839317
commit b5e5e93201
No known key found for this signature in database
GPG Key ID: 24E7ADF9A3B42012
3 changed files with 2 additions and 1 deletions

View File

@ -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: