| 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 d1d6db54006dd2b98eada937c84b8aa9bc7d43c1..ee866809c9c9a21ece9cf050ae8e795f04c0548c 100644
|
| --- a/appengine/findit/crash/test/findit_for_chromecrash_test.py
|
| +++ b/appengine/findit/crash/test/findit_for_chromecrash_test.py
|
| @@ -262,8 +262,6 @@ class FinditForFracasTest(CrashTestCase):
|
|
|
| expected_results = {
|
| 'found': True,
|
| - 'suspected_project': '',
|
| - 'suspected_components': [],
|
| 'suspected_cls': [dummy_match_result.ToDict()],
|
| 'regression_range': dummy_regression_range
|
| }
|
| @@ -274,7 +272,6 @@ class FinditForFracasTest(CrashTestCase):
|
| 'has_regression_range': True,
|
| 'solution': 'core_algorithm',
|
| }
|
| -
|
| self.assertDictEqual(expected_results, results)
|
| self.assertDictEqual(expected_tag, tag)
|
|
|
| @@ -286,12 +283,7 @@ class FinditForFracasTest(CrashTestCase):
|
| analysis.crashed_version = '50.0.1234.0'
|
| results, tag = _FinditForChromeCrash().FindCulprit(analysis).ToDicts()
|
|
|
| - expected_results = {
|
| - 'found': False,
|
| - 'suspected_project': '',
|
| - 'suspected_components': [],
|
| - 'suspected_cls': [],
|
| - }
|
| + expected_results = {'found': False}
|
| expected_tag = {
|
| 'found_suspects': False,
|
| 'found_project': False,
|
|
|