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

Unified Diff: sky/tools/webkitpy/common/checkout/scm/detection.py

Issue 639883003: Get test_webkitpy to actually run again. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: merge to ToT 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
Index: sky/tools/webkitpy/common/checkout/scm/detection.py
diff --git a/sky/tools/webkitpy/common/checkout/scm/detection.py b/sky/tools/webkitpy/common/checkout/scm/detection.py
index e635b4075abaa834ed2b28c8b3f7a2b1fdb7a704..afb4314a3fc914b63cbb5b529f81b61af4e1a352 100644
--- a/sky/tools/webkitpy/common/checkout/scm/detection.py
+++ b/sky/tools/webkitpy/common/checkout/scm/detection.py
@@ -32,7 +32,6 @@ import logging
from webkitpy.common.system.filesystem import FileSystem
from webkitpy.common.system.executive import Executive
-from .svn import SVN
from .git import Git
_log = logging.getLogger(__name__)
@@ -68,9 +67,6 @@ class SCMDetector(object):
if patch_directories == []:
patch_directories = None
- if SVN.in_working_directory(absolute_path, executive=self._executive):
- return SVN(cwd=absolute_path, patch_directories=patch_directories, filesystem=self._filesystem, executive=self._executive)
-
if Git.in_working_directory(absolute_path, executive=self._executive):
return Git(cwd=absolute_path, filesystem=self._filesystem, executive=self._executive)
« no previous file with comments | « sky/tools/webkitpy/common/checkout/scm/__init__.py ('k') | sky/tools/webkitpy/common/checkout/scm/scm_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698