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

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

Issue 2613153006: [Predator] Add TouchCrashedFileMetaFeature. (Closed)
Patch Set: Add comments. Created 3 years, 11 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/suspect.py ('k') | appengine/findit/libs/gitiles/commit_util.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/crash/test/crash_util_test.py
diff --git a/appengine/findit/crash/test/crash_util_test.py b/appengine/findit/crash/test/crash_util_test.py
index 2a8844d7707ab72cf133eb182945842dca25fb93..14c758c6816b5f6d19e10cc118833db8456c7eab 100644
--- a/appengine/findit/crash/test/crash_util_test.py
+++ b/appengine/findit/crash/test/crash_util_test.py
@@ -22,4 +22,7 @@ class CrashUtilTest(testing.AppengineTestCase):
path_1 = 'a/b/c/d/e/file.cc'
path_2 = 'f/g/file.cc'
+ self.assertTrue(crash_util.IsSameFilePath(None, None))
self.assertFalse(crash_util.IsSameFilePath(path_1, path_2))
+ self.assertFalse(crash_util.IsSameFilePath(None, path_2))
+ self.assertFalse(crash_util.IsSameFilePath(path_1, None))
« no previous file with comments | « appengine/findit/crash/suspect.py ('k') | appengine/findit/libs/gitiles/commit_util.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698