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

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

Issue 2827793002: Format all files under tools and utils directory. (Closed)
Patch Set: Format all files under tools and utils directory. Created 3 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/test_options.dart ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_progress.dart
diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/test_progress.dart
index 9baa97f48971172a0085b22ac4f8b145413da1a7..cadbceb4ff6ebfca5e35a69617a5c030a9767514 100644
--- a/tools/testing/dart/test_progress.dart
+++ b/tools/testing/dart/test_progress.dart
@@ -284,8 +284,10 @@ class TestOutcomeLogWriter extends EventListener {
if (output != null) {
double duration = output.time.inMicroseconds / 1000.0;
totalDuration += duration;
- commandResults
- .add({'name': command.displayName, 'duration': duration,});
+ commandResults.add({
+ 'name': command.displayName,
+ 'duration': duration,
+ });
}
}
_writeTestOutcomeRecord({
@@ -334,8 +336,7 @@ class UnexpectedCrashLogger extends EventListener {
final binName = lastCommand.executable;
final binFile = new File(binName);
final binBaseName = new Path(binName).filename;
- if (!archivedBinaries.containsKey(binName) &&
- binFile.existsSync()) {
+ if (!archivedBinaries.containsKey(binName) && binFile.existsSync()) {
final mode = test.configuration['mode'];
final arch = test.configuration['arch'];
final archived = "binary.${mode}_${arch}_${binBaseName}";
« no previous file with comments | « tools/testing/dart/test_options.dart ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698