| Index: tests/standalone/io/http_server_early_client_close_test.dart
|
| diff --git a/tests/standalone/io/http_server_early_client_close_test.dart b/tests/standalone/io/http_server_early_client_close_test.dart
|
| index 6a717ec2dd1680c7b3f48a1844b7e04c5d75dd75..66a2b06d28d87767bcf14c2d0811bc4551f7d2ce 100644
|
| --- a/tests/standalone/io/http_server_early_client_close_test.dart
|
| +++ b/tests/standalone/io/http_server_early_client_close_test.dart
|
| @@ -43,7 +43,7 @@ class EarlyCloseTest {
|
|
|
| List<int> d;
|
| if (data is List<int>) d = data;
|
| - if (data is String) d = data.charCodes();
|
| + if (data is String) d = data.charCodes;
|
| if (d == null) Expect.fail("Invalid data");
|
| sendData(d, server.port);
|
|
|
|
|