| Index: tests/standalone/io/path_test.dart
|
| diff --git a/tests/standalone/io/path_test.dart b/tests/standalone/io/path_test.dart
|
| index c9565e596fd3d156c83c44a47fa3ae47259a12e2..b448c9a379ed0fc54dd4854d65ff15df42a97a7b 100644
|
| --- a/tests/standalone/io/path_test.dart
|
| +++ b/tests/standalone/io/path_test.dart
|
| @@ -74,13 +74,13 @@ void testBaseFunctions() {
|
| } else {
|
| // Make sure that backslashes are uninterpreted on other platforms.
|
| testGetters(new Path.fromNative(r"/foo\bar/bif/fisk.hest"),
|
| - [@'/foo\bar/bif', 'fisk.hest', 'fisk', 'hest'],
|
| + [r'/foo\bar/bif', 'fisk.hest', 'fisk', 'hest'],
|
| 'absolute canonical');
|
| testGetters(new Path.fromNative(r"//foo\bar///bif////fisk.hest"),
|
| - [@'//foo\bar///bif', 'fisk.hest', 'fisk', 'hest'],
|
| + [r'//foo\bar///bif', 'fisk.hest', 'fisk', 'hest'],
|
| 'absolute');
|
| testGetters(new Path.fromNative(r"/foo\ bar/bif/gule\ fisk.hest"),
|
| - [@'/foo\ bar/bif', @'gule\ fisk.hest', @'gule\ fisk', 'hest'],
|
| + [r'/foo\ bar/bif', r'gule\ fisk.hest', r'gule\ fisk', 'hest'],
|
| 'absolute canonical');
|
| }
|
| }
|
|
|