| Index: pkg/scheduled_test/test/metatest.dart
|
| diff --git a/pkg/scheduled_test/test/metatest.dart b/pkg/scheduled_test/test/metatest.dart
|
| index ff85d5106f6c6e664f8ddb3fbd979332ea67d0db..2a83015a3c5e6eac427105a9fd7230e9afa73a53 100644
|
| --- a/pkg/scheduled_test/test/metatest.dart
|
| +++ b/pkg/scheduled_test/test/metatest.dart
|
| @@ -170,7 +170,7 @@ String _indent(String str) {
|
| // TODO(nweiz): Use this simpler code once issue 2980 is fixed.
|
| // return str.replaceAll(new RegExp("^", multiLine: true), " ");
|
|
|
| - return Strings.join(str.split("\n").map((line) => " $line"), "\n");
|
| + return str.split("\n").map((line) => " $line").join("\n");
|
| }
|
|
|
| /// Ensure that the metatest configuration is loaded.
|
|
|