We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baa335c commit 1cf65b9Copy full SHA for 1cf65b9
firebase-functions/src/androidTest/java/com/google/firebase/functions/StreamTests.kt
@@ -128,14 +128,14 @@ class StreamTests {
128
fun genStreamError_receivesError() = runBlocking {
129
val input = mapOf("data" to "test error")
130
val function =
131
- functions.getHttpsCallable("genStreamError").withTimeout(2000, TimeUnit.MILLISECONDS)
+ functions.getHttpsCallable("genStreamError").withTimeout(10_000, TimeUnit.MILLISECONDS)
132
val subscriber = StreamSubscriber()
133
134
function.stream(input).subscribe(subscriber)
135
136
- withTimeout(2000) {
+ withTimeout(10_000) {
137
while (subscriber.throwable == null) {
138
- delay(100)
+ delay(1_000)
139
}
140
141
0 commit comments