We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1ae4053 + a0c8009 commit 6077abeCopy full SHA for 6077abe
rxjava-core/src/main/java/rx/observers/TestSubscriber.java
@@ -64,6 +64,7 @@ public void onNext(T t) {
64
@Override
65
public void onCompleted() {
66
try {
67
+ lastSeenThread = Thread.currentThread();
68
testObserver.onCompleted();
69
} finally {
70
latch.countDown();
@@ -77,6 +78,7 @@ public List<Notification<T>> getOnCompletedEvents() {
77
78
79
public void onError(Throwable e) {
80
81
82
testObserver.onError(e);
83
84
0 commit comments