aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/map_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/map_test.go')
-rw-r--r--src/pkg/runtime/map_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pkg/runtime/map_test.go b/src/pkg/runtime/map_test.go
index b8586483fd..9c703ba362 100644
--- a/src/pkg/runtime/map_test.go
+++ b/src/pkg/runtime/map_test.go
@@ -411,8 +411,7 @@ func TestMapNanGrowIterator(t *testing.T) {
}
func TestMapIterOrder(t *testing.T) {
- // TODO: For issue 6719, add 3 and 7 to this list.
- for _, n := range [...]int{9, 15} {
+ for _, n := range [...]int{3, 7, 9, 15} {
// Make m be {0: true, 1: true, ..., n-1: true}.
m := make(map[int]bool)
for i := 0; i < n; i++ {