summaryrefslogtreecommitdiffstats
path: root/webkit/tools/layout_tests/flakiness_dashboard.html
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools/layout_tests/flakiness_dashboard.html')
-rw-r--r--webkit/tools/layout_tests/flakiness_dashboard.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/tools/layout_tests/flakiness_dashboard.html b/webkit/tools/layout_tests/flakiness_dashboard.html
index 0dc65d5..6a8a93e 100644
--- a/webkit/tools/layout_tests/flakiness_dashboard.html
+++ b/webkit/tools/layout_tests/flakiness_dashboard.html
@@ -1516,7 +1516,9 @@
}
}
- var keys = getKeys(testsNeedingUpdate);
+ // Get the keys in alphabetical order, so it is easy to process groups
+ // of tests.
+ var keys = getKeys(testsNeedingUpdate).sort();
showUpdateInfoForTest(testsNeedingUpdate, keys);
}