From 31ce91988de6051ba1eee4daa938a58680816a43 Mon Sep 17 00:00:00 2001 From: Huy Mai Date: Mon, 9 Dec 2024 08:26:10 +0000 Subject: [PATCH] Minor fix for the scale test log, which helps properly displaying the namespace name Signed-off-by: Huy Mai --- test/e2e/scale.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/scale.go b/test/e2e/scale.go index 7cadb86f1299..871ff2f54b81 100644 --- a/test/e2e/scale.go +++ b/test/e2e/scale.go @@ -637,7 +637,7 @@ func createClusterWorker(ctx context.Context, clusterProxy framework.ClusterProx // If every cluster should be deployed in a separate namespace: // * Deploy ClusterClass in new namespace. if deployClusterInSeparateNamespaces { - log.Logf("Apply ClusterClass in namespace %", namespaceName) + log.Logf("Apply ClusterClass in namespace %s", namespaceName) clusterClassYAML := bytes.Replace(customizedClusterClassYAML, []byte(scaleClusterNamespacePlaceholder), []byte(namespaceName), -1) Eventually(func() error { return clusterProxy.CreateOrUpdate(ctx, clusterClassYAML)