Chromium Code Reviews| Index: tools/testing/dart/multitest.dart |
| diff --git a/tools/testing/dart/multitest.dart b/tools/testing/dart/multitest.dart |
| index 585502c298e26c49677de6412a03d113da8f2fd9..b9596bfc5f47aaea68242ba0f717e7985d02da39 100644 |
| --- a/tools/testing/dart/multitest.dart |
| +++ b/tools/testing/dart/multitest.dart |
| @@ -122,7 +122,7 @@ void ExtractTestsFromMultitest(Path filePath, |
| // Copy all the tests into the output map tests, as multiline strings. |
| for (String key in testsAsLines.keys) { |
| - tests[key] = testsAsLines[key].join(line_separator).concat(line_separator); |
| + tests[key] = testsAsLines[key].join(line_separator) + line_separator; |
|
floitsch
2013/03/08 23:46:48
Are you sure this works already now? Usually tools
Lasse Reichstein Nielsen
2013/03/12 11:43:12
Ack, will revert.
Apparently this isn't hit throug
|
| } |
| } |