diff --git a/pmap_test.go b/pmap_test.go index 7e98cde..c494319 100644 --- a/pmap_test.go +++ b/pmap_test.go @@ -103,7 +103,7 @@ func BenchmarkHmapGet_baseline(b *testing.B) { } func benchmarkHmapGet(b *testing.B, numElems int) { - h := make(map[int]int) + h := make(map[int]Value) for i := range iter(numElems) { h[i] = i } @@ -160,7 +160,7 @@ func BenchmarkHmapSet_baseline(b *testing.B) { } func benchmarkHmapSet(b *testing.B, numElems int) { - h := make(map[int]int) + h := make(map[int]Value) for i := range iter(numElems) { h[i] = i }