summaryrefslogtreecommitdiff
path: root/libgo/go/testing/quick/quick.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/testing/quick/quick.go')
-rw-r--r--libgo/go/testing/quick/quick.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/testing/quick/quick.go b/libgo/go/testing/quick/quick.go
index 756a60e1352..9ec1925de3d 100644
--- a/libgo/go/testing/quick/quick.go
+++ b/libgo/go/testing/quick/quick.go
@@ -123,9 +123,9 @@ func Value(t reflect.Type, rand *rand.Rand) (value reflect.Value, ok bool) {
return s, true
case reflect.String:
numChars := rand.Intn(complexSize)
- codePoints := make([]int, numChars)
+ codePoints := make([]rune, numChars)
for i := 0; i < numChars; i++ {
- codePoints[i] = rand.Intn(0x10ffff)
+ codePoints[i] = rune(rand.Intn(0x10ffff))
}
return reflect.ValueOf(string(codePoints)), true
case reflect.Struct: