Skip to content

Commit 9c5090e

Browse files
Update test_oidc.py
Signed-off-by: Renaud Hartert <[email protected]>
1 parent 9f7ea31 commit 9c5090e

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

tests/test_oidc.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,3 @@ def test_file_id_token_source(test_case: FileTestCase, tmp_path):
107107
source.id_token()
108108
else:
109109
assert source.id_token() == test_case.want
110-
111-
112-
# class MockIdTokenSource(oidc.IdTokenSource):
113-
# def __init__(self, id_token: str, exception: Exception = None):
114-
# self.id_token = id_token
115-
# self.exception = exception
116-
117-
# def id_token(self) -> oidc.IdToken:
118-
# if self.exception:
119-
# raise self.exception
120-
# return oidc.IdToken(jwt=self.id_token)

0 commit comments

Comments
 (0)