Commit 122d2873 authored by Adam Langley's avatar Adam Langley

crypto/rand: typo fix from a69e30463bf4

R=golang-dev
CC=golang-dev
https://golang.org/cl/6497106
parent b752ab2e
......@@ -38,6 +38,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)
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment