From 5930d3779e3b7b164e26d74971ea10e56f0c64d6 Mon Sep 17 00:00:00 2001 From: Jian Qiu Date: Sat, 17 Feb 2024 22:50:53 +0800 Subject: [PATCH] Fix test output when delete ns (#401) Signed-off-by: Jian Qiu --- test/e2e/util/helper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/util/helper.go b/test/e2e/util/helper.go index 08e0a32db..a8c4a088b 100644 --- a/test/e2e/util/helper.go +++ b/test/e2e/util/helper.go @@ -31,7 +31,7 @@ func WaitNamespaceDeleted(restcfg *rest.Config, namespace string) error { if err != nil { return false, err } - fmt.Printf("namespace stil exists %v", ns.Status) + fmt.Printf("namespace stil exists %v\n", ns.Status) return false, nil }) }