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

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

Issue 11887016: Make StreamController's unnamed constructor create a single-sub stream. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 11 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 | « tests/lib/async/stream_single_test.dart ('k') | utils/pub/io.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/stream_single_to_multi_subscriber_test.dart
diff --git a/tests/lib/async/stream_single_to_multi_subscriber_test.dart b/tests/lib/async/stream_single_to_multi_subscriber_test.dart
index 0ef7a26f5479dd30cd0078c02e21bd55763180b8..3feb0497f2e0221d7e9d29f64faa0900682b5315 100644
--- a/tests/lib/async/stream_single_to_multi_subscriber_test.dart
+++ b/tests/lib/async/stream_single_to_multi_subscriber_test.dart
@@ -12,7 +12,7 @@ import 'event_helper.dart';
main() {
test("tomulti 1", () {
- StreamController c = new StreamController<int>.singleSubscription();
+ StreamController c = new StreamController<int>();
Stream<int> multi = c.stream.asMultiSubscriberStream();
// Listen twice.
multi.listen(expectAsync1((v) => Expect.equals(42, v)));
@@ -21,7 +21,7 @@ main() {
});
test("tomulti 2", () {
- StreamController c = new StreamController<int>.singleSubscription();
+ StreamController c = new StreamController<int>();
Stream<int> multi = c.stream.asMultiSubscriberStream();
Events expected = new Events.fromIterable([1, 2, 3, 4, 5]);
Events actual1 = new Events.capture(multi);
@@ -36,7 +36,7 @@ main() {
});
test("tomulti no-op", () {
- StreamController c = new StreamController<int>();
+ StreamController c = new StreamController<int>.multiSubscription();
Stream<int> multi = c.stream.asMultiSubscriberStream();
Events expected = new Events.fromIterable([1, 2, 3, 4, 5]);
Events actual1 = new Events.capture(multi);
« no previous file with comments | « tests/lib/async/stream_single_test.dart ('k') | utils/pub/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698