make tests faster

master
kevin 4 years ago
parent 0a9c427443
commit a1b141d31a

@ -11,6 +11,7 @@ import (
"github.com/alicebob/miniredis" "github.com/alicebob/miniredis"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/tal-tech/go-zero/core/lang"
"github.com/tal-tech/go-zero/core/logx" "github.com/tal-tech/go-zero/core/logx"
"github.com/tal-tech/go-zero/core/mathx" "github.com/tal-tech/go-zero/core/mathx"
"github.com/tal-tech/go-zero/core/stat" "github.com/tal-tech/go-zero/core/stat"
@ -181,10 +182,18 @@ func TestCacheNode_String(t *testing.T) {
func TestCacheValueWithBigInt(t *testing.T) { func TestCacheValueWithBigInt(t *testing.T) {
s, err := miniredis.Run() s, err := miniredis.Run()
if err != nil { assert.Nil(t, err)
t.Error(err) defer func() {
} ch := make(chan lang.PlaceholderType)
defer s.Close() go func() {
s.Close()
close(ch)
}()
select {
case <-ch:
case <-time.After(time.Second):
}
}()
cn := cacheNode{ cn := cacheNode{
rds: redis.NewRedis(s.Addr(), redis.NodeType), rds: redis.NewRedis(s.Addr(), redis.NodeType),

Loading…
Cancel
Save