Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/python/oidc/oidc_auth_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def _grpc_channel() -> grpc.Channel:
return grpc.insecure_channel(target)


def _stub_with_token(token: str) -> openshell_pb2_grpc.OpenShellStub:
def _stub_with_token(token: str) -> tuple[openshell_pb2_grpc.OpenShellStub, list[tuple[str, str]]]:
"""Create a gRPC stub that injects a Bearer token."""
channel = _grpc_channel()
return openshell_pb2_grpc.OpenShellStub(channel), [
Expand Down
Loading