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

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

Issue 2680173002: Move webkitpy/common/checkout/scm/* -> webkitpy/common/checkout/. (Closed)
Patch Set: Created 3 years, 10 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/git_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_unittest.py
similarity index 99%
rename from third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git_unittest.py
rename to third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_unittest.py
index fe9180eed9d1c9e0e2377cf3365a149be0ddf54e..cfaf1e767dadbc84ab40f8ed755550ce570f1156 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_unittest.py
@@ -8,7 +8,7 @@ from webkitpy.common.system.executive import Executive, ScriptError
from webkitpy.common.system.executive_mock import MockExecutive
from webkitpy.common.system.filesystem import FileSystem
from webkitpy.common.system.filesystem_mock import MockFileSystem
-from webkitpy.common.checkout.scm.git import Git
+from webkitpy.common.checkout.git import Git
class GitTestWithRealFilesystemAndExecutive(unittest.TestCase):
@@ -33,7 +33,6 @@ class GitTestWithRealFilesystemAndExecutive(unittest.TestCase):
self._chdir(self.tracking_git_checkout_path)
self.tracking_scm = Git(cwd=self.tracking_git_checkout_path, filesystem=self.filesystem, executive=self.executive)
-
def tearDown(self):
self._chdir(self.original_cwd)
self._run(['rm', '-rf', self.tracking_git_checkout_path])

Powered by Google App Engine
This is Rietveld 408576698