| Index: tests/lib/async/stream_state_test.dart
|
| diff --git a/tests/lib/async/stream_state_test.dart b/tests/lib/async/stream_state_test.dart
|
| index 2f56600701f085a5337162954d860ad6e73b33a8..f27697bf084db18acdf004e2aee64bdb00cfc423 100644
|
| --- a/tests/lib/async/stream_state_test.dart
|
| +++ b/tests/lib/async/stream_state_test.dart
|
| @@ -80,26 +80,6 @@ mainTest(bool broadcast) {
|
| ..close();
|
| });
|
|
|
| - test("$p-pause-during-callback", () {
|
| - var t = new StreamProtocolTest(broadcast);
|
| - t..expectSubscription(true, false)
|
| - ..expectData(42, () {
|
| - t.pause();
|
| - })
|
| - ..expectPause(true, () {
|
| - t.resume();
|
| - })
|
| - ..expectPause(false, () {
|
| - t.pause();
|
| - t.resume();
|
| - t.close();
|
| - })
|
| - ..expectDone()
|
| - ..expectSubscription(false, false);
|
| - t..subscribe()
|
| - ..add(42);
|
| - });
|
| -
|
| test("$p-pause-resume-during-event", () {
|
| var t = new StreamProtocolTest(broadcast);
|
| t..expectSubscription(true, false)
|
|
|