We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36defa commit 53a0926Copy full SHA for 53a0926
xds/src/test/java/io/grpc/xds/GrpcXdsClientImplTestBase.java
@@ -3521,7 +3521,7 @@ public void simpleFlowControl() throws Exception {
3521
TIME_INCREMENT);
3522
barrier.await();
3523
verify(edsResourceWatcher, atLeastOnce()).onResourceChanged(edsUpdateCaptor.capture());
3524
- StatusOr<EdsUpdate> statusOrUpdate = edsUpdateCaptor.getValue();
+ StatusOr<EdsUpdate> statusOrUpdate = edsUpdateCaptor.getAllValues().get(0);
3525
assertThat(statusOrUpdate.hasValue()).isTrue();
3526
EdsUpdate edsUpdate = statusOrUpdate.getValue();
3527
validateGoldenClusterLoadAssignment(edsUpdate);
0 commit comments