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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/local_wpt_unittest.py

Issue 2707183004: Use HTTPS URL for GitHub web-platform-tests repo. (Closed)
Patch Set: Update unit tests 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/w3c/local_wpt_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/local_wpt_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/local_wpt_unittest.py
index dbb0aab0c5500245ca4a0288136ac5eee38f86d0..6d3ae4ff6d191763ff26a4fa7552cfea08ba87b9 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/local_wpt_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/local_wpt_unittest.py
@@ -34,7 +34,7 @@ class LocalWPTTest(unittest.TestCase):
local_wpt.fetch()
self.assertEqual(host.executive.calls, [
- ['git', 'clone', 'git@github.com:w3c/web-platform-tests.git', '/tmp/wpt'],
+ ['git', 'clone', 'https://github.com/w3c/web-platform-tests.git', '/tmp/wpt'],
])
def test_constructor(self):
@@ -83,7 +83,7 @@ class LocalWPTTest(unittest.TestCase):
local_branch_name = local_wpt.create_branch_with_patch('message', 'patch', 'author')
self.assertEqual(local_branch_name, 'chromium-export-try')
self.assertEqual(host.executive.calls, [
- ['git', 'clone', 'git@github.com:w3c/web-platform-tests.git', '/tmp/wpt'],
+ ['git', 'clone', 'https://github.com/w3c/web-platform-tests.git', '/tmp/wpt'],
['git', 'reset', '--hard', 'HEAD'],
['git', 'clean', '-fdx'],
['git', 'checkout', 'origin/master'],

Powered by Google App Engine
This is Rietveld 408576698