From d06e4de72b801bae5641e2569c419a3d31a99a2f Mon Sep 17 00:00:00 2001 From: Cody Littley Date: Wed, 18 Dec 2024 12:47:20 -0600 Subject: [PATCH] Made suggested change. Signed-off-by: Cody Littley --- common/testutils/random/test_random.go | 1 + 1 file changed, 1 insertion(+) diff --git a/common/testutils/random/test_random.go b/common/testutils/random/test_random.go index 147c1f5e5..685de269c 100644 --- a/common/testutils/random/test_random.go +++ b/common/testutils/random/test_random.go @@ -87,6 +87,7 @@ type randIOReader struct { rand *TestRandom } +// Read reads random bytes into the provided buffer, returning the number of bytes read. func (i *randIOReader) Read(p []byte) (n int, err error) { return i.rand.Read(p) }