| Index: tests/standalone/src/EchoServerStreamTest.dart
|
| diff --git a/tests/standalone/src/EchoServerStreamTest.dart b/tests/standalone/src/EchoServerStreamTest.dart
|
| index e84f19a84a48b5a677d3cd7fef2954f9b9d7d357..03d2472598500bbf33164bab1f1b4ecd62b9abe1 100644
|
| --- a/tests/standalone/src/EchoServerStreamTest.dart
|
| +++ b/tests/standalone/src/EchoServerStreamTest.dart
|
| @@ -9,7 +9,6 @@
|
| // VMOptions=--short_socket_write
|
| // VMOptions=--short_socket_read --short_socket_write
|
|
|
| -#library("EchoServerStreamTest");
|
| #import("dart:io");
|
| #import("dart:isolate");
|
| #source("TestingServer.dart");
|
| @@ -140,7 +139,7 @@ class EchoServer extends TestingServer {
|
|
|
| static final int MSGSIZE = EchoServerGame.MSGSIZE;
|
|
|
| - void connectionHandler(Socket connection) {
|
| + void onConnection(Socket connection) {
|
| InputStream inputStream;
|
| List<int> buffer = new List<int>(MSGSIZE);
|
| int offset = 0;
|
|
|