Skip to content

Commit df743ee

Browse files
committed
chore: fix test
1 parent 43c223c commit df743ee

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tests/integration_test/cloud_functions/cloud_functions_e2e_test.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,9 @@ void main() {
398398
),
399399
);
400400

401-
timeoutCallable.stream().listen(
401+
timeoutCallable.stream({
402+
'testTimeout': const Duration(seconds: 6).inMilliseconds.toString(),
403+
}).listen(
402404
(data) {
403405
completer.completeError('Should have thrown');
404406
},
@@ -411,7 +413,6 @@ void main() {
411413
}
412414
},
413415
);
414-
415416
await completer.future;
416417
},
417418
skip: !kIsWeb,

0 commit comments

Comments
 (0)