| 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();
|
| }
|
| }
|
|
|