mirror of
https://github.com/astaxie/beego.git
synced 2024-11-23 18:00:54 +00:00
remove ineffectual assignment to err
This commit is contained in:
parent
6225f0c1e9
commit
c6282e7b27
2
client/cache/redis/redis_test.go
vendored
2
client/cache/redis/redis_test.go
vendored
@ -113,7 +113,7 @@ func TestRedisCache(t *testing.T) {
|
|||||||
t.Error("GetMulti ERROR")
|
t.Error("GetMulti ERROR")
|
||||||
}
|
}
|
||||||
|
|
||||||
vv, err = bm.GetMulti(context.Background(), []string{"astaxie0", "astaxie1"})
|
vv, _ = bm.GetMulti(context.Background(), []string{"astaxie0", "astaxie1"})
|
||||||
if vv[0] != nil {
|
if vv[0] != nil {
|
||||||
t.Error("GetMulti ERROR")
|
t.Error("GetMulti ERROR")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user