Skip to content

Commit

Permalink
Reformatted with black
Browse files Browse the repository at this point in the history
  • Loading branch information
guffee23 committed Sep 15, 2023
1 parent 26e5e0e commit 69e77a8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/entities/repos/test_institutions_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,14 @@ async def test_get_institutions_by_domain_not_existing(
assert len(res) == 0

async def test_get_institutions_by_lei_list(self, query_session: AsyncSession):
res = await repo.get_institutions(query_session, leis=['TESTBANK123', 'TESTBANK456'])
res = await repo.get_institutions(
query_session, leis=["TESTBANK123", "TESTBANK456"]
)
assert len(res) == 2

async def test_get_institutions_by_lei_list_item_not_existing(self, query_session: AsyncSession):
async def test_get_institutions_by_lei_list_item_not_existing(
self, query_session: AsyncSession
):
res = await repo.get_institutions(query_session, leis=["NOTTESTBANK"])
assert len(res) == 0

Expand Down

0 comments on commit 69e77a8

Please sign in to comment.