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

Unified Diff: tools/gardening/lib/src/client.dart

Issue 2990363002: Include passing tests in BuildResult.results (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/lib/src/client.dart
diff --git a/tools/gardening/lib/src/client.dart b/tools/gardening/lib/src/client.dart
index fb83275e982ebb4bba3f81328a841e4787ba1e71..f73a50df5efdeb18501806c07e42d9c9ad58c9f5 100644
--- a/tools/gardening/lib/src/client.dart
+++ b/tools/gardening/lib/src/client.dart
@@ -30,9 +30,9 @@ class HttpBuildbotClient implements BuildbotClient {
Future<BuildResult> readResult(BuildUri buildUri) async {
try {
return await readBuildResultFromHttp(_client, buildUri);
- } on HttpException catch (e) {
+ } on HttpException {
return null;
- } on SocketException catch (e) {
+ } on SocketException {
return null;
}
}
« no previous file with comments | « tools/gardening/lib/src/buildbot_structures.dart ('k') | tools/gardening/lib/src/compare_failures_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698