| Index: appengine/findit/crash/component.py
|
| diff --git a/appengine/findit/crash/component.py b/appengine/findit/crash/component.py
|
| index 37f1f2ce91d258e8b6ead21821fd8fd181860ed6..1872b69dfb52ef8a13cb4b0f7e45dfecd443dac3 100644
|
| --- a/appengine/findit/crash/component.py
|
| +++ b/appengine/findit/crash/component.py
|
| @@ -2,12 +2,12 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -import collections
|
| +from collections import namedtuple
|
| import re
|
|
|
|
|
| -# TODO(wrengr): write the coverage tests the old version was lacking.
|
| -class Component(collections.namedtuple('Component',
|
| +# TODO(http://crbug.com/659346): write the coverage tests.
|
| +class Component(namedtuple('Component',
|
| ['component_name', 'path_regex', 'function_regex'])): # pragma: no cover
|
| """A representation of a "component" in Chromium.
|
|
|
|
|