aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/tests
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2022-09-30 22:35:50 +0400
committerGravatar GitHub <[email protected]>2022-09-30 22:35:50 +0400
commit5692f980d22f1c725ba8bf753dac553a2136e764 (patch)
treee973d923cfee590a3c4eb5c09d6bb1b237fc5295 /pydis_site/apps/api/tests
parentMerge pull request #767 from python-discord/extend-download-timeout (diff)
parentIncrease Request Timeout For GitHub API (diff)
Merge pull request #769 from python-discord/bump-dependencies
Update To 3.10 And Bump Dependencies
Diffstat (limited to 'pydis_site/apps/api/tests')
-rw-r--r--pydis_site/apps/api/tests/test_github_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/tests/test_github_utils.py b/pydis_site/apps/api/tests/test_github_utils.py
index f642f689..2eaf48d9 100644
--- a/pydis_site/apps/api/tests/test_github_utils.py
+++ b/pydis_site/apps/api/tests/test_github_utils.py
@@ -28,7 +28,7 @@ class GeneralUtilityTests(unittest.TestCase):
"""
self.assertEqual("RS256", algorithm, "The GitHub App JWT must be signed using RS256.")
return original_encode(
- payload, "secret-encoding-key", algorithm="HS256", *args, **kwargs
+ payload, "secret-encoding-key", *args, algorithm="HS256", **kwargs
)
original_encode = jwt.encode