| Index: appengine/findit/crash/culprit.py
|
| diff --git a/appengine/findit/crash/culprit.py b/appengine/findit/crash/culprit.py
|
| index b57e0fd098e8a63ce6170315ea7da3cd68a94c6a..6582f2b648246e5d4537199f229ba67d29a4a985 100644
|
| --- a/appengine/findit/crash/culprit.py
|
| +++ b/appengine/findit/crash/culprit.py
|
| @@ -4,14 +4,11 @@
|
|
|
| from collections import namedtuple
|
|
|
| -# TODO(http://crbug.com/659346): We do call this code from various
|
| -# unittests, just not from culprit_test.py; so we need to add some extra
|
| -# unittests there.
|
| +
|
| class Culprit(namedtuple('Culprit',
|
| - ['project', 'components', 'cls', 'regression_range', 'algorithm']
|
| - )): # pragma: no cover
|
| + ['project', 'components', 'cls', 'regression_range', 'algorithm'])):
|
| """The result of successfully identifying the culprit of a crash report.
|
| -
|
| +
|
| Args:
|
| project (str): the most-suspected project
|
| components (list of str): the suspected crbug components.
|
|
|