mirror of
https://github.com/golang/go
synced 2024-11-23 05:10:09 -07:00
maps: enhance the robustness of the tests
Change-Id: I908e11196f55069d6dca6a19cd206629618e9f37 Reviewed-on: https://go-review.googlesource.com/c/go/+/496079 Auto-Submit: Keith Randall <khr@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com> Run-TryBot: xie cui <523516579@qq.com> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com>
This commit is contained in:
parent
09e0f50d03
commit
a1a048a8ab
@ -38,7 +38,7 @@ func TestKeys(t *testing.T) {
|
||||
var m = make(map[int]int)
|
||||
for i := 0; i < 840; i++ {
|
||||
want3 = append(want3, i)
|
||||
m[i] = i
|
||||
m[i] = i * i
|
||||
}
|
||||
|
||||
got3 := Keys(m)
|
||||
|
Loading…
Reference in New Issue
Block a user