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

Unified Diff: tests/lib/async/future_test.dart

Issue 2763823002: Move spaces from before comments to within comments (Closed)
Patch Set: Fix comments Created 3 years, 9 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/lib/async/future_test.dart
diff --git a/tests/lib/async/future_test.dart b/tests/lib/async/future_test.dart
index 5ce2be931eacee375ebd71201e59ae0d5493b022..93c9c3a3bbaa8e956bd16d4671f77fd9270542b9 100644
--- a/tests/lib/async/future_test.dart
+++ b/tests/lib/async/future_test.dart
@@ -973,8 +973,8 @@ void testTypes() {
new Future<int>.delayed(Duration.ZERO, () => value));
testType("Future.microtask($value)",
new Future<int>.microtask(() => value));
- testType("Future.sync($value)", new Future<int>.sync(() => value)); /// 01: ok
- testType("Future.sync(future($value))", /// 01: continued
+ testType("Future.sync($value)", new Future<int>.sync(() => value)); // /// 01: ok
+ testType("Future.sync(future($value))", // /// 01: continued
new Future<int>.sync(() async => new Future.value(value))); /// 01: continued
testType("Future.value($value)", new Future<int>.value(value));
}

Powered by Google App Engine
This is Rietveld 408576698