| Index: tools/testing/dart/test_suite.dart
|
| diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
|
| index dc489f1ce30c20bc11b6703c563586b179f8a078..632cfece25a5b8729ed5edf431159c03a5c4fd36 100644
|
| --- a/tools/testing/dart/test_suite.dart
|
| +++ b/tools/testing/dart/test_suite.dart
|
| @@ -2152,7 +2152,7 @@ class TestUtils {
|
| path = path.replaceAll('/', '_');
|
| final int WINDOWS_SHORTEN_PATH_LIMIT = 60;
|
| 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]);
|
|
|