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

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

Issue 3012433002: Fix lib_2/async/future_test.dart multitest. (Closed)
Patch Set: Created 3 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib_2/async/future_test.dart
diff --git a/tests/lib_2/async/future_test.dart b/tests/lib_2/async/future_test.dart
index a222669d74affb66968db9f77928f6515df798d7..66102d9011947f89e7ac5d02c0c239da42918c64 100644
--- a/tests/lib_2/async/future_test.dart
+++ b/tests/lib_2/async/future_test.dart
@@ -995,8 +995,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( //# 01: ok
+ "Future.sync($value)", new Future<int>.sync(() => value)); //# 01: continued
testType( //# 01: continued
"Future.sync(future($value))", //# 01: continued
new Future<int>.sync(//# 01: continued
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698