| 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();
|
| }
|
|
|