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 7b134f1 commit bca1d82Copy full SHA for bca1d82
tests/test_openapi.py
@@ -9,7 +9,7 @@
9
)
10
11
12
-def test_no_openapi_spec_endpoint(source_api_server):
+def test_no_openapi_spec_endpoint(source_api_server: str):
13
"""When no OpenAPI spec endpoint is set, the proxied OpenAPI spec is unaltered."""
14
app = app_factory(
15
upstream_url=source_api_server,
@@ -25,7 +25,7 @@ def test_no_openapi_spec_endpoint(source_api_server):
25
assert "oidcAuth" not in openapi.get("components", {}).get("securitySchemes", {})
26
27
28
-def test_no_private_endpoints(source_api_server):
+def test_no_private_endpoints(source_api_server: str):
29
"""When no endpoints are private, the proxied OpenAPI spec is unaltered."""
30
31
0 commit comments