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
testObserveError(org.asynchttpclient.extras.rxjava.AsyncHttpObservableTest) Time elapsed: 0.643 sec <<< FAILURE!
java.lang.AssertionError: Not completed!
at rx.observers.TestSubscriber.assertCompleted(TestSubscriber.java:352)
at org.asynchttpclient.extras.rxjava.AsyncHttpObservableTest.testObserveError(AsyncHttpObservableTest.java:98)
testObserveMultiple(org.asynchttpclient.extras.rxjava.AsyncHttpObservableTest) Time elapsed: 0.03 sec <<< FAILURE!
java.lang.AssertionError: Not completed!
at rx.observers.TestSubscriber.assertCompleted(TestSubscriber.java:352)
at org.asynchttpclient.extras.rxjava.AsyncHttpObservableTest.testObserveMultiple(AsyncHttpObservableTest.java:121)
testObserveNoError(org.asynchttpclient.extras.rxjava.AsyncHttpObservableTest) Time elapsed: 0.007 sec <<< FAILURE!
java.lang.AssertionError: Not completed!
at rx.observers.TestSubscriber.assertCompleted(TestSubscriber.java:352)
at org.asynchttpclient.extras.rxjava.AsyncHttpObservableTest.testObserveNoError(AsyncHttpObservableTest.java:78)
testToObservableError(org.asynchttpclient.extras.rxjava.AsyncHttpObservableTest) Time elapsed: 0.006 sec <<< FAILURE!
java.lang.AssertionError: Not completed!
at rx.observers.TestSubscriber.assertCompleted(TestSubscriber.java:352)
at org.asynchttpclient.extras.rxjava.AsyncHttpObservableTest.testToObservableError(AsyncHttpObservableTest.java:58)
testToObservableNoError(org.asynchttpclient.extras.rxjava.AsyncHttpObservableTest) Time elapsed: 0.005 sec <<< FAILURE!
java.lang.AssertionError: Not completed!
at rx.observers.TestSubscriber.assertCompleted(TestSubscriber.java:352)
at org.asynchttpclient.extras.rxjava.AsyncHttpObservableTest.testToObservableNoError(AsyncHttpObservableTest.java:38)
testAbort(org.asynchttpclient.extras.rxjava.single.AsyncHttpSingleTest) Time elapsed: 0.012 sec <<< FAILURE!
java.lang.AssertionError: Not completed!
at rx.observers.TestSubscriber.assertCompleted(TestSubscriber.java:352)
at org.asynchttpclient.extras.rxjava.single.AsyncHttpSingleTest.testAbort(AsyncHttpSingleTest.java:292)
The text was updated successfully, but these errors were encountered:
FixesAsyncHttpClient#1292. All the failing tests make requests to actual websites. Most
probably timeouts happened, but since the tests check for completion first,
any exceptions produced by the tests didn't show up. By changing the assertion
order to check for no errors first, and then for completion, any errors that
are emitted by the tests will be propagated, and not suppressed.
Fixes#1292. All the failing tests make requests to actual websites. Most
probably timeouts happened, but since the tests check for completion first,
any exceptions produced by the tests didn't show up. By changing the assertion
order to check for no errors first, and then for completion, any errors that
are emitted by the tests will be propagated, and not suppressed.
The text was updated successfully, but these errors were encountered: