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

Unified Diff: utils/testrunner/utils.dart

Issue 13896034: Add the ability to change the working directory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed tests Created 7 years, 8 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 | « utils/testrunner/pipeline_utils.dart ('k') | utils/tests/testrunner/testrunner_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/testrunner/utils.dart
diff --git a/utils/testrunner/utils.dart b/utils/testrunner/utils.dart
index 6bb3a904b9e4036c0fbbc3230c5cd81dccf8e824..bf580a3c55c3d70e0c1b7160841f1ba1773eafe6 100644
--- a/utils/testrunner/utils.dart
+++ b/utils/testrunner/utils.dart
@@ -36,7 +36,7 @@ String makePathAbsolute(String path) {
if (p.isAbsolute) {
return p.toNativePath();
} else {
- var cwd = new Path((new Directory.current()).path);
+ var cwd = new Path(Directory.current.path);
return cwd.join(p).toNativePath();
}
}
« no previous file with comments | « utils/testrunner/pipeline_utils.dart ('k') | utils/tests/testrunner/testrunner_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698