Skip to content

Commit bca1d82

Browse files
committed
typing cleanup
1 parent 7b134f1 commit bca1d82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_openapi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
)
1010

1111

12-
def test_no_openapi_spec_endpoint(source_api_server):
12+
def test_no_openapi_spec_endpoint(source_api_server: str):
1313
"""When no OpenAPI spec endpoint is set, the proxied OpenAPI spec is unaltered."""
1414
app = app_factory(
1515
upstream_url=source_api_server,
@@ -25,7 +25,7 @@ def test_no_openapi_spec_endpoint(source_api_server):
2525
assert "oidcAuth" not in openapi.get("components", {}).get("securitySchemes", {})
2626

2727

28-
def test_no_private_endpoints(source_api_server):
28+
def test_no_private_endpoints(source_api_server: str):
2929
"""When no endpoints are private, the proxied OpenAPI spec is unaltered."""
3030
app = app_factory(
3131
upstream_url=source_api_server,

0 commit comments

Comments
 (0)