| Index: tests/standalone/io/file_system_links_test.dart
|
| diff --git a/tests/standalone/io/file_system_links_test.dart b/tests/standalone/io/file_system_links_test.dart
|
| index 90e9692b7f3f7577487e3705f42ba23d29a93f23..fe8eefc6f25f46f83fa606cdd0c77558117b0175 100644
|
| --- a/tests/standalone/io/file_system_links_test.dart
|
| +++ b/tests/standalone/io/file_system_links_test.dart
|
| @@ -66,7 +66,7 @@ testFileWriteRead() {
|
| var y = '${temp.path}${Platform.pathSeparator}y';
|
| new File(x).createSync();
|
| createLink(x, y, true, () {
|
| - var data = "asdf".charCodes;
|
| + var data = "asdf".codeUnits;
|
| var output = new File(y).openWrite(FileMode.WRITE);
|
| output.add(data);
|
| output.close();
|
|
|