Skip to content

Commit b2c0325

Browse files
committed
BehaviorSubjectTest: Fix verification in testCompletedAfterErrorIsNotSent3()
1 parent b6564c4 commit b2c0325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/rx/subjects/BehaviorSubjectTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public void testCompletedAfterErrorIsNotSent3() {
253253
subject.subscribe(o2);
254254
verify(o2, times(1)).onCompleted();
255255
verify(o2, never()).onNext(any());
256-
verify(observer, never()).onError(any(Throwable.class));
256+
verify(o2, never()).onError(any(Throwable.class));
257257
}
258258
@Test(timeout = 1000)
259259
public void testUnsubscriptionCase() {

0 commit comments

Comments
 (0)