| Index: appengine/findit/crash/test/findit_for_chromecrash_test.py
|
| diff --git a/appengine/findit/crash/test/findit_for_chromecrash_test.py b/appengine/findit/crash/test/findit_for_chromecrash_test.py
|
| index dbe3a6a45e8aa98682e1b49582786a58792102c5..5c376a0b00aa01a8521ffbe19c105c90a79f86a0 100644
|
| --- a/appengine/findit/crash/test/findit_for_chromecrash_test.py
|
| +++ b/appengine/findit/crash/test/findit_for_chromecrash_test.py
|
| @@ -205,8 +205,10 @@ class FinditForFracasTest(PredatorTestCase):
|
| lambda _self, report:
|
| [dummy_suspect] if report.regression_range else [])
|
|
|
| - self.mock(ComponentClassifier, 'Classify', lambda *_: [])
|
| - self.mock(ProjectClassifier, 'Classify', lambda *_: '')
|
| + self.mock(ComponentClassifier, 'ClassifySuspects', lambda *_: [])
|
| + self.mock(ComponentClassifier, 'ClassifyCallStack', lambda *_: [])
|
| + self.mock(ProjectClassifier, 'ClassifySuspects', lambda *_: '')
|
| + self.mock(ProjectClassifier, 'ClassifyCallStack', lambda *_: '')
|
|
|
| # TODO(wrengr): for both these tests, we should compare Culprit
|
| # objects directly rather than calling ToDicts and comparing the
|
|
|