From 2c062117d009b814037285df0681071902d54c29 Mon Sep 17 00:00:00 2001 From: YamasouA Date: Sat, 1 Mar 2025 12:32:07 +0900 Subject: [PATCH] fix lint --- test/integration/scheduler_perf/scheduler_perf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/scheduler_perf/scheduler_perf.go b/test/integration/scheduler_perf/scheduler_perf.go index 3cc6bba406a..f30ff807398 100644 --- a/test/integration/scheduler_perf/scheduler_perf.go +++ b/test/integration/scheduler_perf/scheduler_perf.go @@ -1526,7 +1526,7 @@ func runWorkload(tCtx ktesting.TContext, tc *testCase, w *workload, informerFact } select { case <-tCtx.Done(): - return nil, fmt.Errorf("op %d: %v", opIndex, context.Cause(tCtx)) + return nil, fmt.Errorf("op %d: %w", opIndex, context.Cause(tCtx)) default: } err = executor.runOp(realOp, opIndex)