File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
xds/src/test/java/io/grpc/xds Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments