@@ -310,7 +310,7 @@ void main() {
310
310
mockPollClient.induceTimeout = false ;
311
311
});
312
312
313
- test ('should reconnect when process unpauses ' , () async {
313
+ test ('should reconnect when process resumes ' , () async {
314
314
var dataCompleter = Completer <String >();
315
315
final subscribeEvent = SubscribeEvent (
316
316
subscriptionRequest,
@@ -358,7 +358,7 @@ void main() {
358
358
await dataCompleter.future;
359
359
});
360
360
361
- test ('should throttle reconnect after repeated unpausing ' , () async {
361
+ test ('should throttle reconnect after repeatedly resuming ' , () async {
362
362
final blocReady = Completer <void >();
363
363
final subscribeEvent = SubscribeEvent (
364
364
subscriptionRequest,
@@ -380,7 +380,7 @@ void main() {
380
380
],
381
381
),
382
382
reason:
383
- 'Bloc should debounce multiple reconnection triggers while unpausing .' ,
383
+ 'Bloc should debounce multiple reconnection triggers while resuming .' ,
384
384
);
385
385
386
386
bloc.subscribe (
@@ -402,7 +402,7 @@ void main() {
402
402
..add (ProcessStatus .resumed);
403
403
});
404
404
405
- test ('should reconnect multiple times after unpausing ' , () async {
405
+ test ('should reconnect multiple times after resuming ' , () async {
406
406
final blocReady = Completer <void >();
407
407
final subscribeEvent = SubscribeEvent (
408
408
subscriptionRequest,
@@ -640,7 +640,7 @@ void main() {
640
640
await bloc.done.future;
641
641
});
642
642
643
- test ('a process unpauses with autoReconnect disabled' , () async {
643
+ test ('a process resumes with autoReconnect disabled' , () async {
644
644
final blocReady = Completer <void >();
645
645
final subscribeEvent = SubscribeEvent (
646
646
subscriptionRequest,
0 commit comments