| Index: tests/standalone/io/file_test.dart
|
| diff --git a/tests/standalone/io/file_test.dart b/tests/standalone/io/file_test.dart
|
| index 93dccf48c5722772c2d9d6fa9ebf6327f217ad11..348791e7514fd44dc19c654e9c884c483dd1b2d4 100644
|
| --- a/tests/standalone/io/file_test.dart
|
| +++ b/tests/standalone/io/file_test.dart
|
| @@ -981,7 +981,7 @@ class FileTest {
|
| var f = new File.fromPath(path);
|
| Expect.isTrue(f.existsSync());
|
| name = f.fullPathSync();
|
| - path = new Path.fromNative(name);
|
| + path = new Path(name);
|
| var g = new File.fromPath(path);
|
| Expect.isTrue(g.existsSync());
|
| Expect.equals(name, g.fullPathSync());
|
|
|