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

Unified Diff: tests/standalone/src/SocketManyConnectionsTest.dart

Issue 9568006: Missing handling of default arguments in socket stream readInto (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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/standalone/src/Regress-1925.dart ('k') | tests/standalone/src/StreamPipeTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/SocketManyConnectionsTest.dart
diff --git a/tests/standalone/src/SocketManyConnectionsTest.dart b/tests/standalone/src/SocketManyConnectionsTest.dart
index 3dd3c02ded88db303d4064b079a1d7db384fdae2..bb7f9fbfe153da877d957399e07986eb0e9edaf9 100644
--- a/tests/standalone/src/SocketManyConnectionsTest.dart
+++ b/tests/standalone/src/SocketManyConnectionsTest.dart
@@ -4,7 +4,6 @@
//
// Test creating a large number of socket connections.
-#library("SocketManyConnectionsTest");
#import("dart:io");
#import("dart:isolate");
#source("TestingServer.dart");
@@ -68,7 +67,7 @@ class SocketManyConnectionsTest {
class TestServer extends TestingServer {
- void connectionHandler(Socket connection) {
+ void onConnection(Socket connection) {
Socket _client;
void closeHandler() {
« no previous file with comments | « tests/standalone/src/Regress-1925.dart ('k') | tests/standalone/src/StreamPipeTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698