From 02875cef9010633b6689cfd1e2ceec9107b756b4 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 4 Dec 2022 13:27:43 -0800 Subject: Stop using deprecated package io/ioutil Since Go 1.16 (which recently became the minimum supported Go version for this project), the package io/ioutil is deprecated in favor of equivalent functionality in the io and os packages. staticcheck warns about this. Address all the warnings by switching to the non-deprecated replacement functions. --- actions/hashing_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actions/hashing_test.go') diff --git a/actions/hashing_test.go b/actions/hashing_test.go index 2e212e9..26f627b 100644 --- a/actions/hashing_test.go +++ b/actions/hashing_test.go @@ -20,7 +20,7 @@ package actions import ( - "io/ioutil" + "io" "log" "testing" "time" @@ -54,7 +54,7 @@ func TestCostsSearch(t *testing.T) { func benchmarkCostsSearch(b *testing.B, target time.Duration) { // Disable logging for benchmarks - log.SetOutput(ioutil.Discard) + log.SetOutput(io.Discard) for i := 0; i < b.N; i++ { _, err := getHashingCosts(target) if err != nil { -- cgit v1.2.3