Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Unified Diff: tools/testing/dart/summary_report.dart

Issue 1859973002: Autoformat tools/testing/dart (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Format whole directory Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/testing/dart/status_reporter.dart ('k') | tools/testing/dart/test_configurations.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/summary_report.dart
diff --git a/tools/testing/dart/summary_report.dart b/tools/testing/dart/summary_report.dart
index 2f740b52c1995b72a906bbb0ac8c11a10d5afd94..e62f7726634aaf17a2b3cc822c777649cac2b701 100644
--- a/tools/testing/dart/summary_report.dart
+++ b/tools/testing/dart/summary_report.dart
@@ -37,7 +37,7 @@ class SummaryReport {
.any((expectation) => expectation.canBeOutcomeOf(Expectation.FAIL));
bool containsPass = expectations.contains(Expectation.PASS);
bool containsSkip = expectations
- .any((expectation) => expectation.canBeOutcomeOf(Expectation.SKIP));
+ .any((expectation) => expectation.canBeOutcomeOf(Expectation.SKIP));
bool containsSkipByDesign =
expectations.contains(Expectation.SKIP_BY_DESIGN);
bool containsCrash = expectations.contains(Expectation.CRASH);
@@ -100,19 +100,19 @@ class SummaryReport {
}
Map<String, int> get values => {
- 'total': _total,
- 'skippedOther': skippedOther,
- 'skippedByDesign': _skippedByDesign,
- 'pass': _pass,
- 'noCrash': _noCrash,
- 'flakyCrash': _flakyCrash,
- 'failOk': _failOk,
- 'fail': _fail,
- 'crash': _crash,
- 'timeout': _timeout,
- 'compileErrorSkip': _compileErrorSkip,
- 'bogus': bogus
- };
+ 'total': _total,
+ 'skippedOther': skippedOther,
+ 'skippedByDesign': _skippedByDesign,
+ 'pass': _pass,
+ 'noCrash': _noCrash,
+ 'flakyCrash': _flakyCrash,
+ 'failOk': _failOk,
+ 'fail': _fail,
+ 'crash': _crash,
+ 'timeout': _timeout,
+ 'compileErrorSkip': _compileErrorSkip,
+ 'bogus': bogus
+ };
String get report => """Total: $_total tests
* $_skipped tests will be skipped ($_skippedByDesign skipped by design)
« no previous file with comments | « tools/testing/dart/status_reporter.dart ('k') | tools/testing/dart/test_configurations.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698