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

Unified Diff: tests/gclient_smoketest.py

Issue 6350013: Change the fake repo svn users to be emails. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 11 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 | « tests/fake_repos.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/gclient_smoketest.py
diff --git a/tests/gclient_smoketest.py b/tests/gclient_smoketest.py
index 67ef76aa57cb2dd38e14388e6ac688d47237c264..fa2312ff3c12ff1062727add68a829f3d9c73e66 100755
--- a/tests/gclient_smoketest.py
+++ b/tests/gclient_smoketest.py
@@ -1072,10 +1072,12 @@ class GClientSmokeFromCheckout(GClientSmokeBase):
self.enabled = self.FAKE_REPOS.setUpSVN()
os.rmdir(self.root_dir)
if self.enabled:
- check_call(['svn', 'checkout', 'svn://127.0.0.1/svn/trunk/webkit',
- self.root_dir, '-q',
- '--non-interactive', '--no-auth-cache',
- '--username', 'user1', '--password', 'foo'])
+ usr, pwd = self.FAKE_REPOS.USERS[0]
+ check_call(
+ ['svn', 'checkout', 'svn://127.0.0.1/svn/trunk/webkit',
+ self.root_dir, '-q',
+ '--non-interactive', '--no-auth-cache',
+ '--username', usr, '--password', pwd])
def testSync(self):
if not self.enabled:
« no previous file with comments | « tests/fake_repos.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698