From 970989300982482fc0a19b5a77748c54d0d2f9dd Mon Sep 17 00:00:00 2001 From: Wade Simmons Date: Tue, 9 Jun 2026 12:26:04 -0400 Subject: [PATCH] use testing log --- noiseutil/fips140_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/noiseutil/fips140_test.go b/noiseutil/fips140_test.go index b7ee8b0c..0ded06db 100644 --- a/noiseutil/fips140_test.go +++ b/noiseutil/fips140_test.go @@ -4,7 +4,6 @@ import ( "crypto/cipher" "crypto/fips140" "encoding/hex" - "log" "testing" "github.com/stretchr/testify/assert" @@ -29,7 +28,7 @@ func TestNewAESGCM(t *testing.T) { aead := c.(cipher.AEAD) dst := aead.Seal([]byte{}, iv, plaintext, aad) - log.Printf("%x", dst) + t.Logf("%x", dst) assert.Equal(t, expected, dst) // We expect this to fail since we are re-encrypting with a repeat IV