Index: build/android/buildbot/bb_device_steps.py |
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py |
index e1858cef8b80da2f6e4c8be10d548a729a04e504..fc053d132f71eb60da21e52ae479ebed52d34502 100755 |
--- a/build/android/buildbot/bb_device_steps.py |
+++ b/build/android/buildbot/bb_device_steps.py |
@@ -340,13 +340,13 @@ def RunWebkitLayoutTests(options): |
unexpected_passes, unexpected_failures, unexpected_flakes = ( |
_ParseLayoutTestResults(full_results)) |
if unexpected_failures: |
- _PrintDashboardLink('failed', unexpected_failures, |
+ _PrintDashboardLink('failed', unexpected_failures.keys(), |
max_tests=25) |
elif unexpected_passes: |
- _PrintDashboardLink('unexpected passes', unexpected_passes, |
+ _PrintDashboardLink('unexpected passes', unexpected_passes.keys(), |
max_tests=10) |
if unexpected_flakes: |
- _PrintDashboardLink('unexpected flakes', unexpected_flakes, |
+ _PrintDashboardLink('unexpected flakes', unexpected_flakes.keys(), |
max_tests=10) |
if exit_code == 0 and (unexpected_passes or unexpected_flakes): |