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`) }) }