Skip to content

Commit 77ce678

Browse files
committed
fix
1 parent 73c6df0 commit 77ce678

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/gocase/unit/type/bitmap/bitmap_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ func TestBitmap(t *testing.T) {
279279
require.NoError(t, rdb.BitOpDiff1(ctx, "res2", "a", "b", "c").Err())
280280
require.NoError(t, rdb.BitOpAndOr(ctx, "res3", "a", "b", "c").Err())
281281
require.NoError(t, rdb.BitOpOne(ctx, "res4", "a", "b", "c").Err())
282-
require.EqualValues(t, []string{"\x00\x00\x00", "\x00\x01\x00", "\x01\x02\xff", "\x00\x00\x00"}, GetBitmap(t, rdb, ctx, "res1", "res2", "res3", "res4"))
282+
require.EqualValues(t, []string{"\x00\x00\x00", "\x00\x00\x00", "\x01\x02\xff", "\x00\x00\x00"}, GetBitmap(t, rdb, ctx, "res1", "res2", "res3", "res4"))
283283
})
284284

285285
t.Run("BITOP AND|OR|XOR don't change the string with single input key", func(t *testing.T) {

0 commit comments

Comments
 (0)