| 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:
|
|
|