Skip to content

Commit

Permalink
Fixed CI/CD build error
Browse files Browse the repository at this point in the history
  • Loading branch information
yipin-chen committed Jun 27, 2024
1 parent 71b7818 commit 152656b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/python/tests/test_async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6218,7 +6218,7 @@ async def test_object_refcount(self, redis_client: TGlideClient):

@pytest.mark.parametrize("cluster_mode", [True, False])
@pytest.mark.parametrize("protocol", [ProtocolVersion.RESP2, ProtocolVersion.RESP3])
async def test_function_load(self, redis_client: TRedisClient):
async def test_function_load(self, redis_client: TGlideClient):
# TODO: Test function with FCALL
# TODO: Test with FUNCTION LIST
min_version = "7.0.0"
Expand Down Expand Up @@ -6264,7 +6264,7 @@ async def test_function_load(self, redis_client: TRedisClient):
@pytest.mark.parametrize("protocol", [ProtocolVersion.RESP2, ProtocolVersion.RESP3])
@pytest.mark.parametrize("single_route", [True, False])
async def test_function_load_cluster_with_route(
self, redis_client: RedisClusterClient, single_route: bool
self, redis_client: GlideClusterClient, single_route: bool
):
# TODO: Test function with FCALL
# TODO: Test with FUNCTION LIST
Expand Down

0 comments on commit 152656b

Please sign in to comment.