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 b6564c4 commit b2c0325Copy full SHA for b2c0325
src/test/java/rx/subjects/BehaviorSubjectTest.java
@@ -253,7 +253,7 @@ public void testCompletedAfterErrorIsNotSent3() {
253
subject.subscribe(o2);
254
verify(o2, times(1)).onCompleted();
255
verify(o2, never()).onNext(any());
256
- verify(observer, never()).onError(any(Throwable.class));
+ verify(o2, never()).onError(any(Throwable.class));
257
}
258
@Test(timeout = 1000)
259
public void testUnsubscriptionCase() {
0 commit comments