You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: reactive/kotlinx-coroutines-reactive/src/test/kotlin/kotlinx/coroutines/experimental/reactive/PublisherBackpressureTest.kt
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ class PublisherBackpressureTest : TestBase() {
36
36
try {
37
37
send("C") // will suspend (no more requested)
38
38
} finally {
39
-
expect(13)
39
+
expect(12)
40
40
}
41
41
expectUnreached()
42
42
}
@@ -58,7 +58,7 @@ class PublisherBackpressureTest : TestBase() {
58
58
}
59
59
60
60
overridefunonComplete() {
61
-
expect(11)
61
+
expect(13)
62
62
}
63
63
64
64
overridefunonError(e:Throwable) {
@@ -68,9 +68,9 @@ class PublisherBackpressureTest : TestBase() {
Copy file name to clipboardExpand all lines: reactive/kotlinx-coroutines-rx1/src/test/kotlin/kotlinx/coroutines/experimental/rx1/ObservableBackpressureTest.kt
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ class ObservableBackpressureTest : TestBase() {
35
35
try {
36
36
send("C") // will suspend (no more requested)
37
37
} finally {
38
-
expect(13)
38
+
expect(12)
39
39
}
40
40
expectUnreached()
41
41
}
@@ -55,7 +55,7 @@ class ObservableBackpressureTest : TestBase() {
55
55
}
56
56
57
57
overridefunonCompleted() {
58
-
expect(11)
58
+
expect(13)
59
59
}
60
60
61
61
overridefunonError(e:Throwable) {
@@ -65,9 +65,9 @@ class ObservableBackpressureTest : TestBase() {
0 commit comments