Skip to content

Commit

Permalink
fix(google): update tests to have later expiration of sa key
Browse files Browse the repository at this point in the history
  • Loading branch information
Avantol13 committed May 26, 2021
1 parent 95c75aa commit 11847eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ def primary_google_service_account_google(
db_session.commit()

service_account_key_db_entry = models.GoogleServiceAccountKey(
key_id=1, service_account_id=service_account.id, expires=int(time.time()) - 3600
key_id=1, service_account_id=service_account.id, expires=int(time.time()) + 3600
)

db_session.add(service_account_key_db_entry)
Expand Down

0 comments on commit 11847eb

Please sign in to comment.