From 0b570213d5c756b889fe0eac6c5cfd6fdeecfacf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Sun, 20 Apr 2025 18:14:47 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=BB=E8=BE=91=E5=8D=87=E7=BA=A7=E5=90=8E,?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8D=95=E5=85=83=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- redis_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis_test.go b/redis_test.go index 932321b..c7a32e0 100644 --- a/redis_test.go +++ b/redis_test.go @@ -33,6 +33,6 @@ func TestRedisCmd_String(t *testing.T) { Convey("redis cmd MarshalBinary", t, func() { str, err := RedisCommandSet.MarshalBinary() So(err, ShouldBeNil) - So(string(str), ShouldEqual, `"SET"`) + So(string(str), ShouldEqual, `SET`) }) }