This commit is contained in:
hdt3213
2021-05-02 19:00:44 +08:00
parent 9f3ac88b36
commit eeebbbcccf
4 changed files with 3 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import "testing"
func TestMGenerator(t *testing.T) {
gen := MakeGenerator("a")
ids := make(map[int64]struct{})
size := int(maxSequence) - 1
size := int(1e6)
for i := 0; i < size; i++ {
id := gen.NextId()
_, ok := ids[id]