We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef97b3d commit 4719d73Copy full SHA for 4719d73
tests/test_asyncio/test_search.py
@@ -1540,12 +1540,8 @@ async def test_aggregations_add_scores(decoded_r: redis.Redis):
1540
)
1541
1542
1543
- assert await decoded_r.hset(
1544
- "doc1", mapping={"name": "bar", "age": "25"}
1545
- )
1546
1547
- "doc2", mapping={"name": "foo", "age": "19"}
1548
+ assert await decoded_r.hset("doc1", mapping={"name": "bar", "age": "25"})
+ assert await decoded_r.hset("doc2", mapping={"name": "foo", "age": "19"})
1549
1550
req = aggregations.AggregateRequest("*").add_scores()
1551
res = await decoded_r.ft().aggregate(req)
0 commit comments