mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-13 05:46:16 +00:00
Avoid * in filenames
This commit is contained in:
parent
0cff839317
commit
b5e5e93201
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user