Skip to content

Commit f2bfa63

Browse files
committed
Fix test
1 parent 084c51c commit f2bfa63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

xds/src/test/java/io/grpc/xds/ClusterResolverLoadBalancerTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ public void onlyEdsClusters_resourceNeverExist_returnErrorPicker() {
661661
assertPicker(
662662
pickerCaptor.getValue(),
663663
Status.UNAVAILABLE.withDescription(
664-
"No usable endpoint from cluster(s): " + CLUSTER1),
664+
"No usable endpoint from cluster: " + CLUSTER1),
665665
null);
666666
}
667667

@@ -690,7 +690,7 @@ public void edsCluster_resourcesRevoked_shutDownChildLbPolicy() {
690690
verify(helper).updateBalancingState(
691691
eq(ConnectivityState.TRANSIENT_FAILURE), pickerCaptor.capture());
692692
Status expectedError = Status.UNAVAILABLE.withDescription(
693-
"No usable endpoint from cluster(s): " + CLUSTER1);
693+
"No usable endpoint from cluster: " + CLUSTER1);
694694
assertPicker(pickerCaptor.getValue(), expectedError, null);
695695
}
696696

@@ -789,7 +789,7 @@ public void handleEdsResource_noHealthyEndpoint() {
789789
assertPicker(
790790
pickerCaptor.getValue(),
791791
Status.UNAVAILABLE.withDescription(
792-
"No usable endpoint from cluster(s): " + CLUSTER1),
792+
"No usable endpoint from cluster: " + CLUSTER1),
793793
null);
794794
}
795795

0 commit comments

Comments
 (0)