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

Unified Diff: tests/standalone/io/echo_server_stream_test.dart

Issue 48483002: Remove deprecated parts of dart:async. (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/standalone/io/echo_server_stream_test.dart
diff --git a/tests/standalone/io/echo_server_stream_test.dart b/tests/standalone/io/echo_server_stream_test.dart
index 0684571bc3b496abfb890d2f5266d4d65e4c8c73..2b7615eca737cef672d0244442b294dd7c318443 100644
--- a/tests/standalone/io/echo_server_stream_test.dart
+++ b/tests/standalone/io/echo_server_stream_test.dart
@@ -55,9 +55,8 @@ class EchoServerGame {
}
}
- void errorHandler(e) {
+ void errorHandler(e, trace) {
String msg = "Socket error $e";
- var trace = getAttachedStackTrace(e);
if (trace != null) msg += "\nStackTrace: $trace";
Expect.fail(msg);
}
@@ -132,9 +131,8 @@ class EchoServer extends TestingServer {
}
}
- void errorHandler(e) {
+ void errorHandler(e, trace) {
String msg = "Socket error $e";
- var trace = getAttachedStackTrace(e);
if (trace != null) msg += "\nStackTrace: $trace";
Expect.fail(msg);
}

Powered by Google App Engine
This is Rietveld 408576698