| Index: tests/standalone/io/path_test.dart
|
| diff --git a/tests/standalone/io/path_test.dart b/tests/standalone/io/path_test.dart
|
| index 16afb4ca7e04ab57a79c7b3da747d42b44ae8042..0e577e710196084a94f2fba231b8e15a9100730b 100644
|
| --- a/tests/standalone/io/path_test.dart
|
| +++ b/tests/standalone/io/path_test.dart
|
| @@ -157,6 +157,8 @@ void testJoinAppend() {
|
| testAppend('a/b/', 'cd', 'a/b/cd');
|
| testAppend('.', '..', './..');
|
| testAppend('a/b', '/c/d', 'a/b//c/d');
|
| + testAppend('', 'foo/bar', 'foo/bar');
|
| + testAppend('/foo', '', '/foo/');
|
|
|
| // .join can only join a relative path to a path.
|
| // It cannot join an absolute path to a path.
|
|
|