Skip to content

Commit

Permalink
Remove grant type from authentication override
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin5605 committed Mar 13, 2024
1 parent 6f7ded7 commit f839ac6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/mainframe/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def validate_token_override():
audience="DEVELOPMENT AUDIENCE",
issued_at=datetime.now() - timedelta(seconds=10),
expires_at=datetime.now() + timedelta(seconds=10),
grant_type="DEVELOPMENT GRANT TYPE",
)


Expand Down
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ def auth() -> AuthenticationData:
audience="DEVELOPMENT AUDIENCE",
issued_at=datetime.now() - timedelta(seconds=10),
expires_at=datetime.now() + timedelta(seconds=10),
grant_type="DEVELOPMENT GRANT TYPE",
)


Expand Down

0 comments on commit f839ac6

Please sign in to comment.