From 2e4d7a5198a6090ebea0acc5fbc0d78eae27c6f4 Mon Sep 17 00:00:00 2001 From: Jian Li Date: Fri, 5 Nov 2021 16:28:57 +0800 Subject: [PATCH] test/e2e: cleanup e2e core framework's import from sub package e2elog --- test/e2e/framework/cleanup.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/e2e/framework/cleanup.go b/test/e2e/framework/cleanup.go index c13edc71e7d..875e182681a 100644 --- a/test/e2e/framework/cleanup.go +++ b/test/e2e/framework/cleanup.go @@ -17,7 +17,6 @@ limitations under the License. package framework import ( - e2elog "k8s.io/kubernetes/test/e2e/framework/log" "reflect" "runtime" "sync" @@ -73,7 +72,7 @@ func RunCleanupActions() { }() // Run unlocked. for _, fn := range list { - e2elog.Logf("Running Cleanup Action: %v", runtime.FuncForPC(reflect.ValueOf(fn).Pointer()).Name()) + Logf("Running Cleanup Action: %v", runtime.FuncForPC(reflect.ValueOf(fn).Pointer()).Name()) fn() } }