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

Unified Diff: tests/corelib/queue_first_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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
Index: tests/corelib/queue_first_test.dart
diff --git a/tests/corelib/queue_first_test.dart b/tests/corelib/queue_first_test.dart
index 15664d2cdba9b24389d1cb466567557a0f344150..13ace6831a82c31806cc0f7fe56b8bc777310bee 100644
--- a/tests/corelib/queue_first_test.dart
+++ b/tests/corelib/queue_first_test.dart
@@ -9,9 +9,7 @@ import 'dart:collection' show Queue;
main() {
Queue<int> queue1 = new Queue<int>();
- queue1..add(11)
- ..add(12)
- ..add(13);
+ queue1..add(11)..add(12)..add(13);
Queue queue2 = new Queue();
Expect.equals(11, queue1.first);

Powered by Google App Engine
This is Rietveld 408576698