@@ -880,7 +880,7 @@ async def test_bitop_string_operands(self, r: redis.Redis):
880
880
assert int (binascii .hexlify (await r .get ("res3" )), 16 ) == 0x000000FF
881
881
882
882
@pytest .mark .onlynoncluster
883
- @skip_if_server_version_lt ("8.2.0 " )
883
+ @skip_if_server_version_lt ("8.1.224 " )
884
884
async def test_bitop_diff (self , r : redis .Redis ):
885
885
await r .set ("a" , b"\xf0 " )
886
886
await r .set ("b" , b"\xc0 " )
@@ -894,7 +894,7 @@ async def test_bitop_diff(self, r: redis.Redis):
894
894
assert await r .get ("result2" ) == b"\xf0 "
895
895
896
896
@pytest .mark .onlynoncluster
897
- @skip_if_server_version_lt ("8.2.0 " )
897
+ @skip_if_server_version_lt ("8.1.224 " )
898
898
async def test_bitop_diff1 (self , r : redis .Redis ):
899
899
await r .set ("a" , b"\xf0 " )
900
900
await r .set ("b" , b"\xc0 " )
@@ -910,7 +910,7 @@ async def test_bitop_diff1(self, r: redis.Redis):
910
910
assert await r .get ("result2" ) == b"\x00 "
911
911
912
912
@pytest .mark .onlynoncluster
913
- @skip_if_server_version_lt ("8.2.0 " )
913
+ @skip_if_server_version_lt ("8.1.224 " )
914
914
async def test_bitop_andor (self , r : redis .Redis ):
915
915
await r .set ("a" , b"\xf0 " )
916
916
await r .set ("b" , b"\xc0 " )
@@ -926,7 +926,7 @@ async def test_bitop_andor(self, r: redis.Redis):
926
926
assert await r .get ("result2" ) == b"\x00 "
927
927
928
928
@pytest .mark .onlynoncluster
929
- @skip_if_server_version_lt ("8.2.0 " )
929
+ @skip_if_server_version_lt ("8.1.224 " )
930
930
async def test_bitop_one (self , r : redis .Redis ):
931
931
await r .set ("a" , b"\xf0 " )
932
932
await r .set ("b" , b"\xc0 " )
@@ -942,7 +942,7 @@ async def test_bitop_one(self, r: redis.Redis):
942
942
assert await r .get ("result2" ) == b"\xff "
943
943
944
944
@pytest .mark .onlynoncluster
945
- @skip_if_server_version_lt ("8.2.0 " )
945
+ @skip_if_server_version_lt ("8.1.224 " )
946
946
async def test_bitop_new_operations_with_empty_keys (self , r : redis .Redis ):
947
947
await r .set ("a" , b"\xff " )
948
948
@@ -959,7 +959,7 @@ async def test_bitop_new_operations_with_empty_keys(self, r: redis.Redis):
959
959
assert await r .get ("empty_result4" ) is None
960
960
961
961
@pytest .mark .onlynoncluster
962
- @skip_if_server_version_lt ("8.2.0 " )
962
+ @skip_if_server_version_lt ("8.1.224 " )
963
963
async def test_bitop_new_operations_return_values (self , r : redis .Redis ):
964
964
await r .set ("a" , b"\xff \x00 \xff " )
965
965
await r .set ("b" , b"\x00 \xff " )
0 commit comments