chore: update go version (#4540)

Signed-off-by: kevin <wanjunfeng@gmail.com>
This commit is contained in:
Kevin Wan
2025-01-04 12:17:10 +08:00
committed by GitHub
parent 4ac8b492ef
commit e1787b4ccb
9 changed files with 45 additions and 16 deletions

View File

@@ -2119,9 +2119,9 @@ func TestRedisUnlink(t *testing.T) {
func TestRedisTxPipeline(t *testing.T) {
runOnRedis(t, func(client *Redis) {
ctx := context.Background()
pipe, err := newRedis(client.Addr, badType()).TxPipeline()
_, err := newRedis(client.Addr, badType()).TxPipeline()
assert.NotNil(t, err)
pipe, err = client.TxPipeline()
pipe, err := client.TxPipeline()
assert.Nil(t, err)
key := "key"
hashKey := "field"