Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Jun 20, 2023
1 parent 1b228ae commit b380f3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Authentication.py
Expand Up @@ -110,7 +110,7 @@ def testAppInstallationAuthAuthentication(self):
self.assertFalse(installation_auth._is_expired)
self.assertEqual(
installation_auth._AppInstallationAuth__installation_authorization.expires_at,
datetime.datetime(2024, 11, 25, 1, 0, 2)
datetime.datetime(2024, 11, 25, 1, 0, 2),
)

# forward the clock so token expires
Expand All @@ -137,7 +137,7 @@ def testAppInstallationAuthAuthentication(self):
self.assertFalse(installation_auth._is_expired)
self.assertEqual(
installation_auth._AppInstallationAuth__installation_authorization.expires_at,
datetime.datetime(2025, 11, 25, 1, 0, 2)
datetime.datetime(2025, 11, 25, 1, 0, 2),
)

# use the token
Expand Down

0 comments on commit b380f3c

Please sign in to comment.