| Index: test/regression/0200/0224.stmt
|
| diff --git a/test/regression/0200/0224.stmt b/test/regression/0200/0224.stmt
|
| index 4766a99d87dfc37a5028d791421d033162739632..11c87264604253fb4cf1ca372e3333deffd3f6b8 100644
|
| --- a/test/regression/0200/0224.stmt
|
| +++ b/test/regression/0200/0224.stmt
|
| @@ -31,16 +31,14 @@
|
| ]))
|
| .catchError(cannotGetConveyorBeltRunning)
|
| .then((_) => tellEveryoneDonutsAreJustAboutDone())
|
| - .then(
|
| - (_) => Future.wait([
|
| - croissantFactory.start(),
|
| - _giantBakingOvens.start(),
|
| - butterbutterer.start()
|
| - ])
|
| - .catchError(_handleBakingFailures)
|
| - .timeout(scriptLoadingTimeout,
|
| - onTimeout: _handleBakingFailures)
|
| - .catchError(cannotGetConveyorBeltRunning))
|
| + .then((_) => Future.wait([
|
| + croissantFactory.start(),
|
| + _giantBakingOvens.start(),
|
| + butterbutterer.start()
|
| + ])
|
| + .catchError(_handleBakingFailures)
|
| + .timeout(scriptLoadingTimeout, onTimeout: _handleBakingFailures)
|
| + .catchError(cannotGetConveyorBeltRunning))
|
| .catchError(cannotGetConveyorBeltRunning)
|
| .then((_) {
|
| _logger.info("Let's eat!");
|
|
|