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

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

Issue 54723007: Fix warnings in library-tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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
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 be9e975e7f5c018c3698b17792227982f70af2ac..f729edcd56e21030e4f49fa6a132a983bb3ddf93 100644
--- a/tests/lib/async/stream_controller_test.dart
+++ b/tests/lib/async/stream_controller_test.dart
@@ -18,7 +18,7 @@ void testMultiController() {
..error("error!")
..error("error too!")
..close();
- Events actualEvents = new Events.capture(c.stream.asBroadcastStream());
+ CaptureEvents actualEvents = new Events.capture(c.stream.asBroadcastStream());
Lasse Reichstein Nielsen 2013/11/01 09:37:36 Ah, due to using the subscription field.
floitsch 2013/11/01 16:57:25 yes.
expectedEvents.replay(c);
Expect.listEquals(expectedEvents.events, actualEvents.events);
@@ -167,7 +167,7 @@ testSingleController() {
..error("error!")
..error("error too!")
..close();
- Events actualEvents = new Events.capture(c.stream);
+ CaptureEvents actualEvents = new Events.capture(c.stream);
expectedEvents.replay(c);
Expect.listEquals(expectedEvents.events, actualEvents.events);

Powered by Google App Engine
This is Rietveld 408576698