| Index: tests/standalone/io/http_connection_header_test.dart
|
| ===================================================================
|
| --- tests/standalone/io/http_connection_header_test.dart (revision 13754)
|
| +++ tests/standalone/io/http_connection_header_test.dart (working copy)
|
| @@ -33,7 +33,7 @@
|
| void test(int totalConnections, bool clientPersistentConnection) {
|
| HttpServer server = new HttpServer();
|
| server.onError = (e) => Expect.fail("Unexpected error $e");
|
| - server.listen("127.0.0.1", 0, totalConnections);
|
| + server.listen("127.0.0.1", 0, backlog: totalConnections);
|
| server.defaultRequestHandler = (HttpRequest request, HttpResponse response) {
|
| // Check expected request.
|
| Expect.equals(clientPersistentConnection, request.persistentConnection);
|
|
|