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

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

Issue 271273005: Fix typo in test. (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: tests/lib/async/stream_controller_test.dart
diff --git a/tests/lib/async/stream_controller_test.dart b/tests/lib/async/stream_controller_test.dart
index 6d4f93c43e4556410d575c6d6a7560150dd3288e..6cb1e69f0ad2555187c52a197d6a2b39e6908039 100644
--- a/tests/lib/async/stream_controller_test.dart
+++ b/tests/lib/async/stream_controller_test.dart
@@ -442,6 +442,7 @@ void testStreamEquals() {
void testCancelThrow() {
asyncStart();
asyncStart();
+ asyncStart();
StreamController c = new StreamController(onCancel: () {
asyncEnd();
throw "ERROR";
@@ -503,7 +504,7 @@ void testCancelThrow3() {
asyncStart();
asyncStart();
StreamController c2 = new StreamController(onCancel: () {
- asyneEnd();
+ asyncEnd();
throw "ERROR2";
});
c2.add(1);
@@ -531,6 +532,7 @@ void testCancelThrow3() {
}
main() {
+ asyncStart();
testMultiController();
testSingleController();
testExtraMethods();
@@ -539,4 +541,5 @@ main() {
testCancelThrow();
testCancelThrow2();
testCancelThrow3();
+ asyncEnd();
}
« 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