| Index: tools/testing/dart/test_progress.dart
|
| diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/test_progress.dart
|
| index bb31d29f6922a3ecf3b37fb303bb8f945c9f42aa..a4507dc425cdec0291bd129cc322c85ff08335ad 100644
|
| --- a/tools/testing/dart/test_progress.dart
|
| +++ b/tools/testing/dart/test_progress.dart
|
| @@ -10,6 +10,7 @@ import "dart:io" as io;
|
| import "dart:convert" show JSON;
|
| import "path.dart";
|
| import "status_file_parser.dart";
|
| +import "summary_report.dart";
|
| import "test_runner.dart";
|
| import "test_suite.dart";
|
| import "utils.dart";
|
| @@ -308,8 +309,8 @@ class UnexpectedCrashDumpArchiver extends EventListener {
|
|
|
| class SummaryPrinter extends EventListener {
|
| void allTestsKnown() {
|
| - if (SummaryReport.total > 0) {
|
| - SummaryReport.printReport();
|
| + if (summaryReport.total > 0) {
|
| + summaryReport.printReport();
|
| }
|
| }
|
| }
|
|
|