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

Unified Diff: tools/testing/dart/test_configurations.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/runtime_configuration.dart ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_configurations.dart
diff --git a/tools/testing/dart/test_configurations.dart b/tools/testing/dart/test_configurations.dart
index fa8c7e07f81acdd665dc204fe7eb3c8b2946fa78..a2c23a24e1bbba42c158ac7d912d700bb21af153 100644
--- a/tools/testing/dart/test_configurations.dart
+++ b/tools/testing/dart/test_configurations.dart
@@ -286,8 +286,7 @@ Future testConfigurations(List<Map> configurations) async {
// make a pool of all available adb devices.
AdbDevicePool adbDevicePool;
bool needsAdbDevicePool = configurations.any((Map conf) {
- return conf['runtime'] == 'dart_precompiled' &&
- conf['system'] == 'android';
+ return conf['runtime'] == 'dart_precompiled' && conf['system'] == 'android';
});
if (needsAdbDevicePool) {
adbDevicePool = await AdbDevicePool.create();
@@ -305,10 +304,10 @@ Future testConfigurations(List<Map> configurations) async {
var text =
await new File(VS_TOOLCHAIN_FILE.toNativePath()).readAsString();
firstConf['win_sdk_path'] = JSON.decode(text)['win_sdk'];
- } on dynamic {
- // Ignore errors here. If win_sdk is not found, stack trace dumping
- // for timeouts won't work.
- }
+ } on dynamic {
+ // Ignore errors here. If win_sdk is not found, stack trace dumping
+ // for timeouts won't work.
+ }
}
// [firstConf] is needed here, since the ProcessQueue needs to know the
« no previous file with comments | « tools/testing/dart/runtime_configuration.dart ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698