test: fix BenchmarkCoinsAdditionIntersect panic (#9904)

This commit is contained in:
Cuong Manh Le
2021-08-11 02:13:17 -07:00
committed by GitHub
parent 1e33f39cba
commit c45b9d0da6
+1 -1
View File
@@ -6,7 +6,7 @@ import (
)
func coinName(suffix int) string {
return fmt.Sprintf("coinz%d", suffix)
return fmt.Sprintf("coinz%04d", suffix)
}
func BenchmarkCoinsAdditionIntersect(b *testing.B) {