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

Unified Diff: appengine/findit/util_scripts/git_checkout/test/local_git_parsers_test.py

Issue 2518663002: Converting various classes to namedtuples (Closed)
Patch Set: addressing nits 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/util_scripts/git_checkout/test/local_git_parsers_test.py
diff --git a/appengine/findit/util_scripts/git_checkout/test/local_git_parsers_test.py b/appengine/findit/util_scripts/git_checkout/test/local_git_parsers_test.py
index af3e0f09c803118dc6d9379a60fa44e434051f3e..d6b247242c093618f0bcba2a854286ca362a70fc 100644
--- a/appengine/findit/util_scripts/git_checkout/test/local_git_parsers_test.py
+++ b/appengine/findit/util_scripts/git_checkout/test/local_git_parsers_test.py
@@ -75,12 +75,12 @@ class LocalGitParsersTest(unittest.TestCase):
def testGitBlameParserDummyOutput(self):
blame_result = self.blame_parser('Dummy',
- 'src/core/SkFont.h',
- 'rev')
+ 'src/core/SkFont.h',
+ 'rev')
self.assertIsNone(blame_result)
def testGetFileChangeInfo(self):
- self.assertIsNone(local_git_parsers.GetFileChangeInfo('change type',
+ self.assertIsNone(local_git_parsers.GetFileChangeInfo('unknown change type',
None, None))
def testGitChangeLogParser(self):

Powered by Google App Engine
This is Rietveld 408576698