We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e12e12 commit 0bb06f3Copy full SHA for 0bb06f3
1 file changed
xds/src/test/java/io/grpc/xds/internal/grpcservice/CachedChannelManagerTest.java
@@ -68,16 +68,16 @@ public void setUp() {
68
private GrpcServiceConfig buildConfig(String target, String credsType) {
69
ChannelCredsConfig credsConfig = mock(ChannelCredsConfig.class);
70
when(credsConfig.type()).thenReturn(credsType);
71
-
+
72
ConfiguredChannelCredentials creds = ConfiguredChannelCredentials.create(
73
mock(io.grpc.ChannelCredentials.class), credsConfig);
74
75
GoogleGrpcConfig googleGrpc = GoogleGrpcConfig.builder()
76
.target(target)
77
.configuredChannelCredentials(creds)
78
.build();
79
80
- return GrpcServiceConfig.newBuilder()
+ return GrpcServiceConfig.builder()
81
.googleGrpc(googleGrpc)
82
.initialMetadata(ImmutableList.of())
83
0 commit comments