Chore: adjust batch

This commit is contained in:
Dreamacro
2021-07-23 00:30:23 +08:00
parent 4578b2c826
commit 09697b7679
3 changed files with 8 additions and 13 deletions

View File

@ -11,7 +11,7 @@ import (
)
func TestBatch(t *testing.T) {
b := New()
b, _ := New(context.Background())
now := time.Now()
b.Go("foo", func() (interface{}, error) {
@ -37,7 +37,8 @@ func TestBatch(t *testing.T) {
}
func TestBatchWithConcurrencyNum(t *testing.T) {
b := New(
b, _ := New(
context.Background(),
WithConcurrencyNum(3),
)
@ -61,7 +62,7 @@ func TestBatchWithConcurrencyNum(t *testing.T) {
}
func TestBatchContext(t *testing.T) {
b, ctx := WithContext(context.Background())
b, ctx := New(context.Background())
b.Go("error", func() (interface{}, error) {
time.Sleep(time.Millisecond * 100)