You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This test assumed, incorrectly, that `future#done()` completes before
`future#set()` returns, but this isn't true if there are multiple
threads racing to complete the future. In other words listeners added
before calling `onResponse()` are not necessarily notified by the time
`onResponse()` returns. This commit fixes the test to account for this
subtle point.
Closes#68772
0 commit comments