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

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

Issue 397383002: Fix webkitpy scm_unittests so that they pass again. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: patch for review Created 6 years, 5 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: Tools/Scripts/webkitpy/common/checkout/scm/scm.py
diff --git a/Tools/Scripts/webkitpy/common/checkout/scm/scm.py b/Tools/Scripts/webkitpy/common/checkout/scm/scm.py
index daa477ea7af35012f1a04706a8cc548d8ebdc311..1dbd33f1b9197b1fcb6194ea77f284a2f94cffcc 100644
--- a/Tools/Scripts/webkitpy/common/checkout/scm/scm.py
+++ b/Tools/Scripts/webkitpy/common/checkout/scm/scm.py
@@ -86,10 +86,10 @@ class SCM:
def find_checkout_root(self, path):
SCM._subclass_must_implement()
- def add(self, path, return_exit_code=False):
- self.add_list([path], return_exit_code)
+ def add(self, path, return_exit_code=False, recurse=True):
+ self.add_list([path], return_exit_code, recurse)
- def add_list(self, paths, return_exit_code=False):
+ def add_list(self, paths, return_exit_code=False, recurse=True):
self._subclass_must_implement()
def delete(self, path):
« no previous file with comments | « Tools/Scripts/webkitpy/common/checkout/scm/git.py ('k') | Tools/Scripts/webkitpy/common/checkout/scm/scm_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698