File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 28
28
# this speeds up coverage with Python 3.12: https://github.com/nedbat/coveragepy/issues/1665
29
29
COVERAGE_CORE : sysmon
30
30
REDIS_IMAGE : redis:7.4-rc2
31
- REDIS_STACK_IMAGE : redis/redis-stack-server:7.4.0-rc2
31
+ REDIS_STACK_IMAGE : redis/redis-stack-server:latest
32
32
33
33
jobs :
34
34
dependency-audit :
Original file line number Diff line number Diff line change @@ -1540,10 +1540,10 @@ async def test_aggregations_add_scores(decoded_r: redis.Redis):
1540
1540
)
1541
1541
)
1542
1542
1543
- assert await decoded_r .ft (). client . hset (
1543
+ assert await decoded_r .hset (
1544
1544
"doc1" , mapping = {"name" : "bar" , "age" : "25" }
1545
1545
)
1546
- assert await decoded_r .ft (). client . hset (
1546
+ assert await decoded_r .hset (
1547
1547
"doc2" , mapping = {"name" : "foo" , "age" : "19" }
1548
1548
)
1549
1549
Original file line number Diff line number Diff line change @@ -1450,8 +1450,8 @@ def test_aggregations_add_scores(client):
1450
1450
)
1451
1451
)
1452
1452
1453
- client .ft (). client . hset ("doc1" , mapping = {"name" : "bar" , "age" : "25" })
1454
- client .ft (). client . hset ("doc2" , mapping = {"name" : "foo" , "age" : "19" })
1453
+ client .hset ("doc1" , mapping = {"name" : "bar" , "age" : "25" })
1454
+ client .hset ("doc2" , mapping = {"name" : "foo" , "age" : "19" })
1455
1455
1456
1456
req = aggregations .AggregateRequest ("*" ).add_scores ()
1457
1457
res = client .ft ().aggregate (req )
You can’t perform that action at this time.
0 commit comments