We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7a7a08 commit d888dc4Copy full SHA for d888dc4
pytest_iam/__init__.py
@@ -17,11 +17,12 @@
17
from canaille.core.models import User
18
from canaille.core.populate import fake_groups
19
from canaille.core.populate import fake_users
20
+from canaille.oidc.basemodels import Client
21
from canaille.oidc.basemodels import Token
22
from flask import Flask
23
from flask import g
24
from joserfc.jwk import JWKRegistry
-from werkzeug.test import Client
25
+from werkzeug.test import Client as TestClient
26
27
28
class Server:
@@ -33,7 +34,7 @@ class Server:
33
34
app: Flask
35
"""The authorization server flask app."""
36
- test_client: Client
37
+ test_client: TestClient
38
"""A test client to interact with the IAM without performing real network requests."""
39
40
models: ModuleType
0 commit comments