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

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

Issue 663023008: Remove deprecated and unused run_and_throw_if_fail from webkitpy (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « no previous file | Tools/Scripts/webkitpy/common/system/executive.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/common/checkout/scm/scm_unittest.py
diff --git a/Tools/Scripts/webkitpy/common/checkout/scm/scm_unittest.py b/Tools/Scripts/webkitpy/common/checkout/scm/scm_unittest.py
index fb5a4e6ebf50c55391cc75f0e70eb1542a9ae491..1542127faf3d628a7be3c809bfdd881af703172a 100644
--- a/Tools/Scripts/webkitpy/common/checkout/scm/scm_unittest.py
+++ b/Tools/Scripts/webkitpy/common/checkout/scm/scm_unittest.py
@@ -94,7 +94,7 @@ class SCMTestBase(unittest.TestCase):
return self.executive.run_command(*args, **kwargs)
def _run_silent(self, args, **kwargs):
- self.executive.run_and_throw_if_fail(args, quiet=True, **kwargs)
+ self.executive.run_command(args, **kwargs)
def _write_text_file(self, path, contents):
self.fs.write_text_file(path, contents)
« no previous file with comments | « no previous file | Tools/Scripts/webkitpy/common/system/executive.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698