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

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

Issue 2663063007: [Predator] Switch from anonymous dict to CrashData. (Closed)
Patch Set: Rebase and fix delta test. Created 3 years, 10 months 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
« no previous file with comments | « appengine/findit/crash/test/crash_data_test.py ('k') | appengine/findit/crash/test/crash_report_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/crash/test/crash_pipeline_test.py
diff --git a/appengine/findit/crash/test/crash_pipeline_test.py b/appengine/findit/crash/test/crash_pipeline_test.py
index d03973f98917aeb14be1d7cea769049303878642..f728a8df481c5ea7d08610d167914aa4ff4f1d4f 100644
--- a/appengine/findit/crash/test/crash_pipeline_test.py
+++ b/appengine/findit/crash/test/crash_pipeline_test.py
@@ -19,7 +19,7 @@ class CrashPipelineTest(PredatorTestCase):
app_module = pipeline_handlers._APP
def testAnalysisAborted(self):
- crash_identifiers = self.GetDummyCrashData()['crash_identifiers']
+ crash_identifiers = self.GetDummyChromeCrashData()['crash_identifiers']
analysis = FracasCrashAnalysis.Create(crash_identifiers)
analysis.status = analysis_status.RUNNING
analysis.put()
@@ -32,7 +32,7 @@ class CrashPipelineTest(PredatorTestCase):
self.assertEqual(analysis_status.ERROR, analysis.status)
def testFindCulpritFails(self):
- crash_identifiers = self.GetDummyCrashData()['crash_identifiers']
+ crash_identifiers = self.GetDummyChromeCrashData()['crash_identifiers']
analysis = FracasCrashAnalysis.Create(crash_identifiers)
analysis.status = analysis_status.RUNNING
analysis.put()
@@ -51,7 +51,7 @@ class CrashPipelineTest(PredatorTestCase):
self.assertFalse(analysis.found_components)
def testFindCulpritSucceeds(self):
- crash_identifiers = self.GetDummyCrashData()['crash_identifiers']
+ crash_identifiers = self.GetDummyChromeCrashData()['crash_identifiers']
analysis = FracasCrashAnalysis.Create(crash_identifiers)
analysis.status = analysis_status.RUNNING
analysis.put()
« no previous file with comments | « appengine/findit/crash/test/crash_data_test.py ('k') | appengine/findit/crash/test/crash_report_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698