Skip to content

Commit

Permalink
reformat black
Browse files Browse the repository at this point in the history
  • Loading branch information
MHHukiewitz committed Sep 27, 2023
1 parent 9ac0fe6 commit a99fa66
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/unit/test_node_get.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ async def test_fetch_aggregate(aleph_messages):
cache = MessageCache()
cache.add(aleph_messages)

aggregate = await cache.fetch_aggregate(aleph_messages[0].sender, aleph_messages[0].content.key)
aggregate = await cache.fetch_aggregate(
aleph_messages[0].sender, aleph_messages[0].content.key
)

assert aggregate == aleph_messages[0].content.content

Expand All @@ -212,7 +214,9 @@ async def test_fetch_aggregates(aleph_messages):

aggregates = await cache.fetch_aggregates(aleph_messages[0].sender)

assert aggregates == {aleph_messages[0].content.key: aleph_messages[0].content.content}
assert aggregates == {
aleph_messages[0].content.key: aleph_messages[0].content.content
}


@pytest.mark.asyncio
Expand Down

0 comments on commit a99fa66

Please sign in to comment.