Skip to content

Commit 341c8f7

Browse files
Removing unnecessary test
1 parent f25f828 commit 341c8f7

File tree

1 file changed

+1
-19
lines changed

1 file changed

+1
-19
lines changed

language-adaptors/rxjava-kotlin/src/test/kotlin/rx/lang/kotlin/ExtensionTests.kt

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -84,24 +84,6 @@ public class ExtensionTests : KotlinTests() {
8484
verify(a, times(0))!!.error(any(javaClass<Exception>()))
8585
}
8686

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-
}
10587

10688
[Test]
10789
public fun testMerge() {
@@ -294,4 +276,4 @@ public class ExtensionTests : KotlinTests() {
294276
}
295277

296278
}
297-
}
279+
}

0 commit comments

Comments
 (0)