From a40288600325bc417ace19585b62324011fab74a Mon Sep 17 00:00:00 2001 From: Salvatore Mesoraca Date: Wed, 7 Aug 2024 10:18:17 +0200 Subject: [PATCH] Update tests/test_asyncio/test_commands.py Signed-off-by: Salvatore Mesoraca --- tests/test_asyncio/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_asyncio/test_commands.py b/tests/test_asyncio/test_commands.py index 1aaf7e9e..c50d844e 100644 --- a/tests/test_asyncio/test_commands.py +++ b/tests/test_asyncio/test_commands.py @@ -655,7 +655,7 @@ async def test_bitop_not_in_place(self, r: valkey.Valkey): @skip_if_server_version_lt("2.6.0") @pytest.mark.onlynoncluster async def test_bitop_single_string(self, r: valkey.Valkey): - test_str = b"\x01\x02\xff" + test_str = b"\x01\x02\xFF" await r.set("a", test_str) await r.bitop("and", "res1", "a") await r.bitop("or", "res2", "a")