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

Unified Diff: tests/corelib_strong/queue_single_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_strong/queue_single_test.dart
diff --git a/tests/corelib_strong/queue_single_test.dart b/tests/corelib_strong/queue_single_test.dart
index 22f80480f3e52f30e2054823bc48d9cdfb45abff..53893958efca21152f625d293844fc30fc160ac5 100644
--- a/tests/corelib_strong/queue_single_test.dart
+++ b/tests/corelib_strong/queue_single_test.dart
@@ -3,6 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
library queue.single.test;
+
import "package:expect/expect.dart";
import 'dart:collection' show Queue;
@@ -10,9 +11,7 @@ main() {
Queue<int> queue1 = new Queue<int>();
queue1.add(42);
Queue queue2 = new Queue();
- queue2..add(11)
- ..add(12)
- ..add(13);
+ queue2..add(11)..add(12)..add(13);
Queue queue3 = new Queue();
Expect.equals(42, queue1.single);

Powered by Google App Engine
This is Rietveld 408576698