| Index: tests/standalone/io/http_read_test.dart
|
| diff --git a/tests/standalone/io/http_read_test.dart b/tests/standalone/io/http_read_test.dart
|
| index dfef4e44400423172020a79beb72567840e53ca3..6cba2b5108367155f40fa89b8e04b854ed32c8f1 100644
|
| --- a/tests/standalone/io/http_read_test.dart
|
| +++ b/tests/standalone/io/http_read_test.dart
|
| @@ -174,7 +174,7 @@ void testRead(bool chunkedEncoding) {
|
| request.addString(data.substring(10, data.length));
|
| } else {
|
| request.contentLength = data.length;
|
| - request.add(data.charCodes);
|
| + request.add(data.codeUnits);
|
| }
|
| return request.close();
|
| })
|
|
|