Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: tests/standalone/io/directory_test.dart

Issue 50413005: Reapply "Remove @deprecated features." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/standalone/http_launch_test.dart ('k') | tests/standalone/io/file_fuzz_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « tests/standalone/http_launch_test.dart ('k') | tests/standalone/io/file_fuzz_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698