Index: gm/rebaseline_server/results.py |
=================================================================== |
--- gm/rebaseline_server/results.py (revision 11566) |
+++ gm/rebaseline_server/results.py (working copy) |
@@ -205,11 +205,7 @@ |
"expectedHashDigest": str(expected_image[1]), |
} |
Results._AddToCategoryDict(category_dict, results_for_this_test) |
- |
- # TODO(epoger): For now, don't include succeeded results in the raw |
- # data. There are so many of them that they make the client too slow. |
- if updated_result_type != gm_json.JSONKEY_ACTUALRESULTS_SUCCEEDED: |
- test_data.append(results_for_this_test) |
+ test_data.append(results_for_this_test) |
epoger
2013/10/01 21:16:10
Now that we limit the number of results shown, it'
|
return {"categories": category_dict, "testData": test_data} |
@staticmethod |