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

Unified Diff: pkg/async/test/result_test.dart

Issue 294973010: Fix typo in fix. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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: pkg/async/test/result_test.dart
diff --git a/pkg/async/test/result_test.dart b/pkg/async/test/result_test.dart
index da6746f4794cecdff6309ee8c6764f3f81714af7..0f2ae0a2c51464a94859b87e6fe59d82b2116c3f 100644
--- a/pkg/async/test/result_test.dart
+++ b/pkg/async/test/result_test.dart
@@ -236,7 +236,7 @@ void main() {
test("flatten error 1", () {
Result<int> error = new Result<int>.error("BAD", stack);
Result<int> flattened =
- Result.flatten(new Result<Result<int>>.error(error));
+ Result.flatten(new Result<Result<int>>.error("BAD", stack));
expectResult(flattened, error);
});
« 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