File tree Expand file tree Collapse file tree 1 file changed +1
-22
lines changed
language-adaptors/rxjava-kotlin/src/test/kotlin/rx/lang/kotlin Expand file tree Collapse file tree 1 file changed +1
-22
lines changed Original file line number Diff line number Diff line change @@ -87,27 +87,6 @@ public class BasicKotlinTests : KotlinTests() {
87
87
verify(a, times(0 ))!! .error(any(javaClass<Exception >()))
88
88
}
89
89
90
- [Test ]
91
- public fun testMergeDelayError () {
92
- Observable .mergeDelayError(
93
- Observable .from(listOf (1 , 2 , 3 )),
94
- Observable .merge(
95
- Observable .from(6 ),
96
- Observable .error(NullPointerException ()),
97
- Observable .from(7 )
98
- ),
99
- Observable .from(listOf (4 , 5 ))
100
- )!! .subscribe(received(), { e -> a!! .error(e) })
101
- verify(a, times(1 ))!! .received(1 )
102
- verify(a, times(1 ))!! .received(2 )
103
- verify(a, times(1 ))!! .received(3 )
104
- verify(a, times(1 ))!! .received(4 )
105
- verify(a, times(1 ))!! .received(5 )
106
- verify(a, times(1 ))!! .received(6 )
107
- verify(a, times(0 ))!! .received(7 )
108
- verify(a, times(1 ))!! .error(any(javaClass<NullPointerException >()))
109
- }
110
-
111
90
[Test ]
112
91
public fun testMerge () {
113
92
Observable .merge(
@@ -345,4 +324,4 @@ public class BasicKotlinTests : KotlinTests() {
345
324
}
346
325
347
326
}
348
- }
327
+ }
You can’t perform that action at this time.
0 commit comments