Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: ff137 <[email protected]>
  • Loading branch information
ff137 committed Nov 12, 2024
1 parent 56d4010 commit 19cdaff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acapy_agent/indy/credx/tests/test_cred_issuance.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async def test_issue_store_non_rev(self):

assert not await self.holder.get_mime_type(cred_id, "name")

creds = await self.holder.get_credentials(None, None, None)
creds = await self.holder.get_credentials(offset=None, limit=None, wql=None)
assert len(creds) == 1
assert creds[0] == stored_cred

Expand Down Expand Up @@ -247,7 +247,7 @@ async def test_issue_store_rev(self):
assert found
stored_cred = json.loads(found)

creds = await self.holder.get_credentials(None, None, None)
creds = await self.holder.get_credentials(offset=None, limit=None, wql=None)
assert len(creds) == 1
assert creds[0] == stored_cred

Expand Down

0 comments on commit 19cdaff

Please sign in to comment.