From d88d2dd26082faaf6bedb3226e89a646ebbae191 Mon Sep 17 00:00:00 2001 From: Dave Mihalcik Date: Mon, 31 Aug 2026 17:02:32 -0400 Subject: [PATCH] chore: bump go.work toolchain to go1.25.14 and simplify an rt_test condition Picks up the go1.25.13 security release (net/http h2c ReadHeaderTimeout, crypto/tls post-handshake message limit, encoding/asn1 and encoding/xml recursion guards, html/template regexp context tracking, x/net/idna Punycode, x/mod/sumdb tlog verification) plus go1.25.14. --- go.work | 2 +- service/rttests/rt_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.work b/go.work index df816e52bd..90341be9fe 100644 --- a/go.work +++ b/go.work @@ -1,6 +1,6 @@ go 1.25.5 -toolchain go1.25.11 +toolchain go1.25.14 use ( ./examples diff --git a/service/rttests/rt_test.go b/service/rttests/rt_test.go index c60a0e8e5e..b7e8e49f62 100644 --- a/service/rttests/rt_test.go +++ b/service/rttests/rt_test.go @@ -396,7 +396,7 @@ func decrypt(client *sdk.SDK, tdfFile string, plaintext string) error { buf := new(strings.Builder) _, err = io.Copy(buf, tdfreader) - if err != nil && !(errors.Is(err, io.EOF)) { + if err != nil && !errors.Is(err, io.EOF) { return err }