| 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 2778205dd86c6e88b99153a4cb47b1a25becf320..cc465d8d6b35676459aa88b5d475366d81ccc655 100644
|
| --- a/tests/standalone/io/file_non_ascii_test.dart
|
| +++ b/tests/standalone/io/file_non_ascii_test.dart
|
| @@ -30,16 +30,16 @@ main() {
|
| nonAsciiFile.create().then((_) {
|
| var d = nonAsciiFile.parent;
|
| Expect.isTrue(d.path.endsWith(precomposed) ||
|
| - d.path.endsWith(decomposed));
|
| + d.path.endsWith(decomposed));
|
| nonAsciiFile.length().then((length) {
|
| Expect.equals(6, length);
|
| nonAsciiFile.lastModified().then((_) {
|
| nonAsciiFile.resolveSymbolicLinks().then((path) {
|
| Expect.isTrue(path.endsWith('${precomposed}.txt') ||
|
| - path.endsWith('${decomposed}.txt'));
|
| + path.endsWith('${decomposed}.txt'));
|
| tempDir.delete(recursive: true).then((_) {
|
| asyncEnd();
|
| - });
|
| + });
|
| });
|
| });
|
| });
|
|
|