diff options
author | tejasshah@google.com <tejasshah@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-26 16:30:16 +0000 |
---|---|---|
committer | tejasshah@google.com <tejasshah@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-26 16:30:16 +0000 |
commit | 67111a4747a162679d2e711c078e54e513411f29 (patch) | |
tree | c70b601c494cd219c0678e35d55186437196db52 /chrome/test/live_sync | |
parent | 5710f5995f77c8b8e6db1ac667262a133d9c2fb7 (diff) | |
download | chromium_src-67111a4747a162679d2e711c078e54e513411f29.zip chromium_src-67111a4747a162679d2e711c078e54e513411f29.tar.gz chromium_src-67111a4747a162679d2e711c078e54e513411f29.tar.bz2 |
Updating the script to pass the port value as part of sync-url instead of separate parameter.
Review URL: http://codereview.chromium.org/174503
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24452 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/live_sync')
-rw-r--r-- | chrome/test/live_sync/sync_integration_test.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/test/live_sync/sync_integration_test.py b/chrome/test/live_sync/sync_integration_test.py index 3799468..913c473 100644 --- a/chrome/test/live_sync/sync_integration_test.py +++ b/chrome/test/live_sync/sync_integration_test.py @@ -285,8 +285,7 @@ def RunOneTest(test_exe_path, test_name, username, password): '--user-data-dir=' + user_dir,
'--sync-user-for-test=' + username,
'--sync-password-for-test=' + password,
- '--sync-url=' + HTTP_SERVER_URL,
- '--sync-port=' + sync_port]
+ '--sync-url=' + HTTP_SERVER_URL + ':' + sync_port]
logging.info(
'%s will run with command: %s'
% (test_name, subprocess.list2cmdline(command)))
|