Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1110)

Unified Diff: appengine/findit/crash/test/findit_for_chromecrash_test.py

Issue 2432203003: [Predator] Run predator. (Closed)
Patch Set: . Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698