| Index: tests/standalone/io/http_server_early_client_close2_test.dart
 | 
| diff --git a/tests/standalone/io/http_server_early_client_close2_test.dart b/tests/standalone/io/http_server_early_client_close2_test.dart
 | 
| index 5f695deb2f4b01e4efd8fbb8254a9ba257970809..0f3f73bbb317d2bade667ae26b04fbcfbd2a0187 100644
 | 
| --- a/tests/standalone/io/http_server_early_client_close2_test.dart
 | 
| +++ b/tests/standalone/io/http_server_early_client_close2_test.dart
 | 
| @@ -16,7 +16,7 @@ main() {
 | 
|    HttpServer.bind("127.0.0.1", 0).then((server) {
 | 
|      server.listen(
 | 
|        (request) {
 | 
| -        String name = new Options().script;
 | 
| +        String name = Platform.script;
 | 
|          new File(name).openRead().pipe(request.response)
 | 
|              .catchError((e) { /* ignore */ });
 | 
|        });
 | 
| 
 |