diff --git a/pubspec.yaml b/pubspec.yaml index e2fd529..e6641b8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,8 +1,8 @@ name: grpc description: Dart implementation of gRPC, a high performance, open-source universal RPC framework. -version: 4.0.2-wip +version: 4.0.2 -repository: https://github.com/grpc/grpc-dart +repository: https://github.com/open-runtime/grpc-dart environment: sdk: ^3.5.0 diff --git a/test/server_test.dart b/test/server_test.dart index 74b6987..b323f77 100644 --- a/test/server_test.dart +++ b/test/server_test.dart @@ -325,7 +325,7 @@ void main() { }); group('returns error if interceptor blocks request', () { - GrpcError? interceptor(ServiceCall call, ServiceMethod method) { + GrpcError? interceptor(call, method) { if (method.name == 'Unary') { return GrpcError.unauthenticated('Request is unauthenticated'); }