Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(379)

Unified Diff: test/regression/0200/0224.stmt

Issue 1255643002: New, simpler and faster line splitter. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Optimize nesting. Reformat. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/regression/0100/0198.stmt ('k') | test/regression/0300/0360.stmt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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!");
« no previous file with comments | « test/regression/0100/0198.stmt ('k') | test/regression/0300/0360.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698