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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py

Issue 1809723002: Remove optional --commit-author argument from auto-rebaseline script. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
index 57fbbed28b94ecd20184ce1f45a1c2d22111eede..1cebddd3e894d01327706dfef758b20b62774ef6 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
@@ -92,8 +92,8 @@ class MockSCM(object):
def timestamp_of_revision(self, path, revision):
return '2013-02-01 08:48:05 +0000'
- def commit_locally_with_message(self, message, commit_all_working_directory_changes=True, author=None):
- self._local_commits.append([message, commit_all_working_directory_changes, author])
+ def commit_locally_with_message(self, message, commit_all_working_directory_changes=True):
+ self._local_commits.append([message, commit_all_working_directory_changes])
pass
def local_commits(self):

Powered by Google App Engine
This is Rietveld 408576698