Skip to content

Commit 921ef35

Browse files
authored
Merge pull request kubernetes#87949 from 928234269/non_ascii_01
Fix non-ascii characters in test/e2e_node and test/network.
2 parents 0b2636a + 44bf347 commit 921ef35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/e2e/network/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ var _ = SIGDescribe("Services", func() {
710710
/*
711711
Release : v1.9
712712
Testname: Kubernetes Service
713-
Description: By default when a kubernetes cluster is running there MUST be a kubernetes service running in the cluster.
713+
Description: By default when a kubernetes cluster is running there MUST be a 'kubernetes' service running in the cluster.
714714
*/
715715
framework.ConformanceIt("should provide secure master service ", func() {
716716
_, err := cs.CoreV1().Services(metav1.NamespaceDefault).Get(context.TODO(), "kubernetes", metav1.GetOptions{})

test/e2e_node/startup_probe_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ var _ = framework.KubeDescribe("StartupProbe [Serial] [Disruptive]", func() {
117117
/*
118118
Release : v1.16
119119
Testname: Pod liveness probe fails after startup success
120-
Description: A Pod is created with failing liveness probe and delayed startup probe that uses exec command to cat /temp/health file. The Container is started by creating /tmp/startup after 10 seconds, triggering liveness probe to fail. The Pod MUST now be killed and restarted incrementing restart count to 1.
120+
Description: A Pod is created with failing liveness probe and delayed startup probe that uses 'exec' command to cat /temp/health file. The Container is started by creating /tmp/startup after 10 seconds, triggering liveness probe to fail. The Pod MUST now be killed and restarted incrementing restart count to 1.
121121
*/
122122
ginkgo.It("should be restarted by liveness probe after startup probe enables it", func() {
123123
cmd := []string{"/bin/sh", "-c", "sleep 10; echo ok >/tmp/startup; sleep 600"}

0 commit comments

Comments
 (0)