File tree Expand file tree Collapse file tree 1 file changed +1
-19
lines changed
language-adaptors/rxjava-kotlin/src/test/kotlin/rx/lang/kotlin Expand file tree Collapse file tree 1 file changed +1
-19
lines changed Original file line number Diff line number Diff line change @@ -84,24 +84,6 @@ public class ExtensionTests : KotlinTests() {
84
84
verify(a, times(0 ))!! .error(any(javaClass<Exception >()))
85
85
}
86
86
87
- [Test ]
88
- public fun testMergeDelayError () {
89
- Triple (listOf (1 , 2 , 3 ).asObservable(),
90
- Triple (6 .asObservable(),
91
- NullPointerException ().asObservable<Int >(),
92
- 7 .asObservable()
93
- ).merge(),
94
- listOf (4 , 5 ).asObservable()
95
- ).mergeDelayError().subscribe(received(), { e -> a!! .error(e) })
96
- verify(a, times(1 ))!! .received(1 )
97
- verify(a, times(1 ))!! .received(2 )
98
- verify(a, times(1 ))!! .received(3 )
99
- verify(a, times(1 ))!! .received(4 )
100
- verify(a, times(1 ))!! .received(5 )
101
- verify(a, times(1 ))!! .received(6 )
102
- verify(a, times(0 ))!! .received(7 )
103
- verify(a, times(1 ))!! .error(any(javaClass<NullPointerException >()))
104
- }
105
87
106
88
[Test ]
107
89
public fun testMerge () {
@@ -294,4 +276,4 @@ public class ExtensionTests : KotlinTests() {
294
276
}
295
277
296
278
}
297
- }
279
+ }
You can’t perform that action at this time.
0 commit comments