Update gqueue_unit_test.go

This commit is contained in:
jroam
2019-06-16 23:26:49 +08:00
parent 5b71e92776
commit 0ab60cb770

View File

@ -12,7 +12,6 @@ func TestQueue_Len(t *testing.T) {
q1 := gqueue.New(maxs)
for i := 0; i < maxs; i++ {
q1.Push(i)
}
gtest.Assert(q1.Len(), maxs)
}