Skip to content

Commit cca1c95

Browse files
authored
linters
1 parent 4f92d68 commit cca1c95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_asyncio/test_bloom.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,9 @@ async def test_tdigest_mergestore(modclient: redis.Redis):
401401
assert await modclient.tdigest().create("sourcekey2", 100)
402402
assert await modclient.tdigest().add("sourcekey1", [10], [1.0])
403403
assert await modclient.tdigest().add("sourcekey2", [50], [1.0])
404-
assert await modclient.tdigest().mergestore("destkey", 2, "sourcekey1", "sourcekey2")
405-
assert await modclient.tdigest().max("destkey") == 50
406-
assert await modclient.tdigest().min("destkey") == 10
404+
assert await modclient.tdigest().mergestore("dest", 2, "sourcekey1", "sourcekey2")
405+
assert await modclient.tdigest().max("dest") == 50
406+
assert await modclient.tdigest().min("dest") == 10
407407

408408

409409
# @pytest.mark.redismod

0 commit comments

Comments
 (0)