e2e: remove redundant spaces in test names

The spaces are redundant because Ginkgo will add them itself when concatenating
the different test name components. Upcoming change in the framework will
enforce that there are no such redundant spaces.
This commit is contained in:
Patrick Ohly
2023-09-28 14:41:20 +02:00
parent fe6d64d080
commit 0e8a1f1816
23 changed files with 101 additions and 93 deletions

View File

@@ -108,7 +108,7 @@ var _ = SIGDescribe("ReplicaSet", func() {
Testname: Replica Set, run basic image
Description: Create a ReplicaSet with a Pod and a single Container. Make sure that the Pod is running. Pod SHOULD send a valid response when queried.
*/
framework.ConformanceIt("should serve a basic image on each replica with a public image ", func(ctx context.Context) {
framework.ConformanceIt("should serve a basic image on each replica with a public image", func(ctx context.Context) {
testReplicaSetServeImageOrFail(ctx, f, "basic", framework.ServeHostnameImage)
})