aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pkg/crypto/rand/rand_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/crypto/rand/rand_test.go b/src/pkg/crypto/rand/rand_test.go
index c5dbdb6cb8..43c00840a3 100644
--- a/src/pkg/crypto/rand/rand_test.go
+++ b/src/pkg/crypto/rand/rand_test.go
@@ -37,6 +37,6 @@ func TestReadEmpty(t *testing.T) {
}
n, err = Reader.Read(nil)
if n != 0 || err != nil {
- t.Fatalf("Read(make(nil) = %d, %v", n, err)
+ t.Fatalf("Read(nil) = %d, %v", n, err)
}
}