| Index: tests/standalone/io/file_non_ascii_test.dart
|
| diff --git a/tests/standalone/io/file_non_ascii_test.dart b/tests/standalone/io/file_non_ascii_test.dart
|
| index 3bdc9390bfe1c6efae627906aa9b37fd7c3c347d..3aa0a3a1c4ec63af14343b41fc8e1b3ebd35f8c5 100644
|
| --- a/tests/standalone/io/file_non_ascii_test.dart
|
| +++ b/tests/standalone/io/file_non_ascii_test.dart
|
| @@ -27,7 +27,7 @@ main() {
|
| // The contents of the file is precomposed utf8.
|
| Expect.equals(precomposed, contents);
|
| nonAsciiFile.create().then((_) {
|
| - nonAsciiFile.directory().then((d) {
|
| + var d = nonAsciiFile.directory;
|
| Expect.isTrue(d.path.endsWith(precomposed) ||
|
| d.path.endsWith(decomposed));
|
| nonAsciiFile.length().then((length) {
|
| @@ -37,8 +37,7 @@ main() {
|
| Expect.isTrue(path.endsWith('${precomposed}.txt') ||
|
| path.endsWith('${decomposed}.txt'));
|
| tempDir.delete(recursive: true).then((_) {
|
| - port.close();
|
| - });
|
| + port.close();
|
| });
|
| });
|
| });
|
|
|