From 52e90c360f53a5de62a67ae6802d61beddc04126 Mon Sep 17 00:00:00 2001 From: tb Date: Mon, 4 May 2026 19:15:45 +0000 Subject: [PATCH] wycheproof.go: simplfiy for loop --- regress/lib/libcrypto/wycheproof/wycheproof.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regress/lib/libcrypto/wycheproof/wycheproof.go b/regress/lib/libcrypto/wycheproof/wycheproof.go index 780babfe80a..06f53fb4d66 100644 --- a/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/regress/lib/libcrypto/wycheproof/wycheproof.go @@ -1,4 +1,4 @@ -/* $OpenBSD: wycheproof.go,v 1.203 2026/05/04 19:11:01 tb Exp $ */ +/* $OpenBSD: wycheproof.go,v 1.204 2026/05/04 19:15:45 tb Exp $ */ /* * Copyright (c) 2018,2023 Joel Sing * Copyright (c) 2018,2019,2022-2025 Theo Buehler @@ -3192,7 +3192,7 @@ func runTestVectors(path string) bool { return wtg.run(wtv.Algorithm, variant) }) } - for _ = range wtv.TestGroups { + for range wtv.TestGroups { result := <-testc.resultCh if !result { success = false