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

Unified Diff: tools/gardening/bin/current_summary.dart

Issue 2999043003: Use package:testing for tools/gardening (Closed)
Patch Set: Created 3 years, 4 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
Index: tools/gardening/bin/current_summary.dart
diff --git a/tools/gardening/bin/current_summary.dart b/tools/gardening/bin/current_summary.dart
index da3261bb1a666a3a10067d333fc4e8d06e4c0436..0491e086e0f4bddabe53a66b39ea07df0db2d4df 100644
--- a/tools/gardening/bin/current_summary.dart
+++ b/tools/gardening/bin/current_summary.dart
@@ -8,6 +8,7 @@
/// The results are currently pulled from the second to last build since the
/// last build might not have completed yet.
+import 'dart:async';
import 'dart:math' hide log;
import 'dart:io';
@@ -27,7 +28,7 @@ void help(ArgParser argParser) {
print(argParser.usage);
}
-main(List<String> args) async {
+Future main(List<String> args) async {
ArgParser argParser = createArgParser();
argParser.addOption('group',
help: "Restricts the build groups\n"

Powered by Google App Engine
This is Rietveld 408576698