mirror of
https://github.com/outbackdingo/kubernetes.git
synced 2026-02-24 03:47:33 +00:00
Avoid * in filenames
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user