| Index: tools/testing/dart/test_suite.dart
|
| diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
|
| index 7bf4c72c77dbd55955976cac4b0b90a96da53edf..a0a3f73a250bd8ecd2a99cc5a74325e70f649368 100644
|
| --- a/tools/testing/dart/test_suite.dart
|
| +++ b/tools/testing/dart/test_suite.dart
|
| @@ -2148,9 +2148,9 @@ class TestUtils {
|
| path = 'multitest/${path.substring(index)}';
|
| }
|
| path = path.replaceAll('/', '_');
|
| - final int WINDOWS_SHORTEN_PATH_LIMIT = 60;
|
| + final int WINDOWS_SHORTEN_PATH_LIMIT = 58;
|
| if (Platform.operatingSystem == 'windows' &&
|
| - path.length >= WINDOWS_SHORTEN_PATH_LIMIT) {
|
| + path.length > WINDOWS_SHORTEN_PATH_LIMIT) {
|
| for (var key in PATH_REPLACEMENTS.keys) {
|
| if (path.startsWith(key)) {
|
| path = path.replaceFirst(key, PATH_REPLACEMENTS[key]);
|
|
|