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) }