From 89b6476bc1debac9af5e2a2d64a5fbb4a07e7ca6 Mon Sep 17 00:00:00 2001 From: Hristo Temelski Date: Tue, 17 Jun 2025 14:39:35 +0300 Subject: [PATCH] fixed tests --- commands_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands_test.go b/commands_test.go index 32c3829d..19548e13 100644 --- a/commands_test.go +++ b/commands_test.go @@ -1504,7 +1504,7 @@ var _ = Describe("Commands", func() { get := client.Get(ctx, "dest") Expect(get.Err()).NotTo(HaveOccurred()) - Expect(get.Val()).To(Equal("\xf0")) + Expect(get.Val()).To(Equal("\x00")) }) It("should BitOpAndOr", Label("NonRedisEnterprise"), func() { @@ -1523,7 +1523,7 @@ var _ = Describe("Commands", func() { get := client.Get(ctx, "dest") Expect(get.Err()).NotTo(HaveOccurred()) - Expect(get.Val()).To(Equal("\xf0")) + Expect(get.Val()).To(Equal("\x0f")) }) It("should BitOpOne", Label("NonRedisEnterprise"), func() {