Chromium Code Reviews| Index: tests/standalone/io/path_test.dart |
| diff --git a/tests/standalone/io/path_test.dart b/tests/standalone/io/path_test.dart |
| index b8b58b6f38489e1a934300a76c415f08d9b41bd5..7249b1c7fbbf3f8013ec01ee50811ffb80e9055f 100644 |
| --- a/tests/standalone/io/path_test.dart |
| +++ b/tests/standalone/io/path_test.dart |
| @@ -323,6 +323,7 @@ void testWindowsDrive() { |
| var C2Path = new Path(r'C:\a\b\d'); |
| var C3Path = new Path(r'C:\a\b'); |
| var C4Path = new Path(r'C:\'); |
| + var c4Path = new Path(r'C:\'); |
|
Søren Gjesse
2013/04/08 14:54:16
Shouldn't it be a lower case c here???
Anders Johnsen
2013/04/08 14:55:58
Hehe, oops :)
|
| var DPath = new Path(r'D:\a\b\d\e'); |
| var NoPath = new Path(r'\a\b\c\.'); |
| @@ -338,4 +339,5 @@ void testWindowsDrive() { |
| Expect.equals('d', cPath.relativeTo(C3Path).toString()); |
| Expect.equals('a/b/d', cPath.relativeTo(C4Path).toString()); |
| Expect.equals('../../../', C4Path.relativeTo(cPath).toString()); |
| + Expect.equals('a/b', C3Path.relativeTo(c4Path).toString()); |
| } |