| Index: pkg/testing/lib/src/test_dart/path.dart
|
| diff --git a/pkg/testing/lib/src/test_dart/path.dart b/pkg/testing/lib/src/test_dart/path.dart
|
| index b595e0b7367faf113c4ab9b6d95abf2b411bb82e..5d22c0e0420f3400700cafb9610b87e08956e1f0 100644
|
| --- a/pkg/testing/lib/src/test_dart/path.dart
|
| +++ b/pkg/testing/lib/src/test_dart/path.dart
|
| @@ -34,7 +34,7 @@ class Path {
|
| static String _cleanWindows(String source) {
|
| // Change \ to /.
|
| var clean = source.replaceAll('\\', '/');
|
| - // Add / before intial [Drive letter]:
|
| + // Add / before initial [Drive letter]:
|
| if (clean.length >= 2 && clean[1] == ':') {
|
| clean = '/$clean';
|
| }
|
|
|