Skip to content

Commit fd9fdce

Browse files
committed
Fix error wrapping
1 parent 0219cbb commit fd9fdce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/env-tests/time_aware_fairness_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ var _ = Describe("Time Aware Fairness", Ordered, func() {
259259
BeforeAll(func() {
260260
runtests, err := strconv.ParseBool(os.Getenv("RUN_TIME_AWARE_TESTS"))
261261
if err != nil {
262-
Skip(fmt.Sprintf("Failed to parse RUN_TIME_AWARE_TESTS environment variable: %w", err))
262+
Skip(fmt.Sprintf("Failed to parse RUN_TIME_AWARE_TESTS environment variable: %v", err))
263263
}
264264
if !runtests {
265265
Skip("Skipping time aware fairness tests (RUN_TIME_AWARE_TESTS is not set to true)")

0 commit comments

Comments
 (0)