Skip to content

Commit 6c6cb8b

Browse files
committed
test
1 parent d1097a5 commit 6c6cb8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/storage_clients/_redis/test_redis_rq_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ async def rq_client(
2626
suppress_user_warning: None, # noqa: ARG001
2727
) -> AsyncGenerator[RedisRequestQueueClient, None]:
2828
"""A fixture for a Redis RQ client."""
29-
if request.param == 'bloom' and sys.platform == 'win32' and sys.version_info >= (3, 14):
29+
if request.param == 'bloom' and sys.version_info >= (3, 14):
3030
pytest.skip('Bloom filters not supported on Windows with Python 3.14 and fakeredis')
3131

3232
client = await RedisStorageClient(redis=redis_client, queue_dedup_strategy=request.param).create_rq_client(

0 commit comments

Comments
 (0)