Skip to content

Commit

Permalink
Merge pull request #19 from guyzyl/main
Browse files Browse the repository at this point in the history
Update test_api.py
  • Loading branch information
guyzyl authored Mar 16, 2021
2 parents c1d2aa8 + 0840e31 commit d52f312
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jwthenticator/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ async def test_full_flow(self) -> None:
await self.api.register_key(RegisterKeyRequest(key=key, identifier=uuid_identifier))

# Check that the key was registered
await self.api.is_key_registerd(KeyRequest(key=key))
is_key_registered = await self.api.is_key_registerd(KeyRequest(key=key))
assert is_key_registered.result

# Authenticate and get access + refres tokens
tokens_obj_a = await self.api.authenticate(AuthRequest(key=key, identifier=uuid_identifier))
Expand Down

0 comments on commit d52f312

Please sign in to comment.