From f337b7ec37873b1df2d9cc414712ecd83696a67a Mon Sep 17 00:00:00 2001 From: mesutoezdil Date: Sat, 13 Jun 2026 12:13:14 +0200 Subject: [PATCH] fix(e2e): correct return type of _stub_with_token --- e2e/python/oidc/oidc_auth_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/python/oidc/oidc_auth_test.py b/e2e/python/oidc/oidc_auth_test.py index 797507212..5816868dd 100644 --- a/e2e/python/oidc/oidc_auth_test.py +++ b/e2e/python/oidc/oidc_auth_test.py @@ -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), [