Commit f01fd323 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #46974 from liggitt/cert-filename

Automatic merge from submit-queue (batch tested with PRs 46112, 46764, 46727, 46974, 46968) Avoid * in filenames Fixes #46958
parents 60e03805 b5e5e932
...@@ -395,7 +395,8 @@ func TestServerRunWithSNI(t *testing.T) { ...@@ -395,7 +395,8 @@ func TestServerRunWithSNI(t *testing.T) {
} }
specToName := func(spec TestCertSpec) string { 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: 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