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

Unified Diff: tests/presubmit_unittest.py

Issue 6932060: Remove presubmit warning for long lines in .grd files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: '' Created 9 years, 7 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
« presubmit_support.py ('K') | « presubmit_support.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/presubmit_unittest.py
===================================================================
--- tests/presubmit_unittest.py (revision 84086)
+++ tests/presubmit_unittest.py (working copy)
@@ -1392,7 +1392,7 @@
'foo1', 'foo1\n', self.fake_root_dir, None, 0, 0, None)
input_api1 = self.MockInputApi(change1, False)
affected_file = self.mox.CreateMock(presubmit.SvnAffectedFile)
- input_api1.AffectedFiles(mox.IgnoreArg(), include_deletes=False).AndReturn(
+ input_api1.AffectedFiles(mox.IgnoreArg(), include_deletes=False, None).AndReturn(
M-A Ruel 2011/05/09 20:13:44 80 cols.
sail 2011/05/10 16:53:25 Done.
[affected_file])
affected_file.NewContents().AndReturn([
'ahoy',
@@ -1405,7 +1405,7 @@
'foo2', 'foo2\n', self.fake_root_dir, None, 0, 0, None)
input_api2 = self.MockInputApi(change2, False)
- input_api2.AffectedFiles(mox.IgnoreArg(), include_deletes=False).AndReturn(
+ input_api2.AffectedFiles(mox.IgnoreArg(), include_deletes=False, None).AndReturn(
[affected_file])
affected_file.NewContents().AndReturn([
'ahoy',
« presubmit_support.py ('K') | « presubmit_support.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698