Chromium Code Reviews| Index: tools/testing/dart/test_suite.dart |
| diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart |
| index 426f86baea4871182fc9d38d9261325be208e56d..3de8a1b8adc09d775f646dc644a8de44acb8b62d 100644 |
| --- a/tools/testing/dart/test_suite.dart |
| +++ b/tools/testing/dart/test_suite.dart |
| @@ -1003,16 +1003,15 @@ class SummaryReport { |
| static void printReport() { |
| if (total == 0) return; |
|
Bill Hesse
2012/01/12 12:53:36
The \ at the end of a line does not seem to elimin
|
| - String report = """\ |
| -Total: $total tests |
| + String report = """Total: $total tests |
| * $skipped tests will be skipped |
| * $noCrash tests are expected to be flaky but not crash |
| * $pass tests are expected to pass |
| * $failOk tests are expected to fail that we won't fix |
| * $fail tests are expected to fail that we should fix |
| * $crash tests are expected to crash that we should fix |
| - * $timeout tests are allowed to timeout\ |
| + * $timeout tests are allowed to timeout |
| """; |
| print(report); |
| - } |
| + } |
|
Bill Hesse
2012/01/12 12:53:36
Fix this.
|
| } |