| Index: pkg/path/test/windows_test.dart
|
| diff --git a/pkg/path/test/windows_test.dart b/pkg/path/test/windows_test.dart
|
| index 7c16e31928a92e07dc574880f21743c926675f6e..72eefc3fa9daf7b7b52dac8257008bedd0a05c14 100644
|
| --- a/pkg/path/test/windows_test.dart
|
| +++ b/pkg/path/test/windows_test.dart
|
| @@ -41,6 +41,9 @@ main() {
|
| expect(context.rootPrefix('C:\\'), r'C:\');
|
| expect(context.rootPrefix('C:/'), 'C:/');
|
| expect(context.rootPrefix(r'\\server\share\a\b'), r'\\server\share');
|
| + expect(context.rootPrefix(r'\\server\share'), r'\\server\share');
|
| + expect(context.rootPrefix(r'\\server\'), r'\\server\');
|
| + expect(context.rootPrefix(r'\\server'), r'\\server');
|
| expect(context.rootPrefix(r'\a\b'), r'\');
|
| expect(context.rootPrefix(r'/a/b'), r'/');
|
| expect(context.rootPrefix(r'\'), r'\');
|
|
|