| Index: tests/standalone/io/directory_test.dart
|
| diff --git a/tests/standalone/io/directory_test.dart b/tests/standalone/io/directory_test.dart
|
| index 405366653ad1bdd391b2c98b4d8c9aed2404a194..d871fd6fa40c3caabcc6709aecab808eab2d3a5c 100644
|
| --- a/tests/standalone/io/directory_test.dart
|
| +++ b/tests/standalone/io/directory_test.dart
|
| @@ -51,7 +51,8 @@ class DirectoryTest {
|
|
|
| testSyncListing(true);
|
| testSyncListing(false);
|
| - Expect.equals(f.fullPathSync(), fLong.fullPathSync());
|
| + Expect.equals(f.resolveSymbolicLinksSync(),
|
| + fLong.resolveSymbolicLinksSync());
|
|
|
| asyncStart();
|
| directory.list(recursive: true).listen(
|
| @@ -421,7 +422,7 @@ class DirectoryTest {
|
| }
|
|
|
| static void testEquals() {
|
| - var name = new File('.').fullPathSync();
|
| + var name = new File('.').resolveSymbolicLinksSync();
|
| Directory current1 = new Directory(name);
|
| Directory current2 = new Directory(name);
|
| Expect.equals(current1.path, current2.path);
|
|
|