Skip to content

Commit 4719d73

Browse files
committed
Codestyle issues
1 parent ef97b3d commit 4719d73

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/test_asyncio/test_search.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1540,12 +1540,8 @@ async def test_aggregations_add_scores(decoded_r: redis.Redis):
15401540
)
15411541
)
15421542

1543-
assert await decoded_r.hset(
1544-
"doc1", mapping={"name": "bar", "age": "25"}
1545-
)
1546-
assert await decoded_r.hset(
1547-
"doc2", mapping={"name": "foo", "age": "19"}
1548-
)
1543+
assert await decoded_r.hset("doc1", mapping={"name": "bar", "age": "25"})
1544+
assert await decoded_r.hset("doc2", mapping={"name": "foo", "age": "19"})
15491545

15501546
req = aggregations.AggregateRequest("*").add_scores()
15511547
res = await decoded_r.ft().aggregate(req)

0 commit comments

Comments
 (0)