Skip to content

Commit 44bf347

Browse files
committed
Fix non-ascii characters in test/e2e_node and test/network.
Signed-off-by: Sakura <[email protected]>
1 parent 9f6f608 commit 44bf347

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("kubernetes", metav1.GetOptions{})

test/e2e_node/startup_probe_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ var _ = framework.KubeDescribe("StartupProbe [Serial] [Disruptive]", func() {
116116
/*
117117
Release : v1.16
118118
Testname: Pod liveness probe fails after startup success
119-
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.
119+
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.
120120
*/
121121
ginkgo.It("should be restarted by liveness probe after startup probe enables it", func() {
122122
cmd := []string{"/bin/sh", "-c", "sleep 10; echo ok >/tmp/startup; sleep 600"}

0 commit comments

Comments
 (0)