| Index: chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py
|
| diff --git a/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py b/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py
|
| index 430c71fffacdbe4ecc2895ca3bb6977623ec6228..a336b5e21dad9e8228898a51218483bc6c6c57a1 100644
|
| --- a/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py
|
| +++ b/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py
|
| @@ -2,18 +2,14 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -import os
|
| from autotest_lib.client.bin import site_chrome_test
|
|
|
| class desktopui_SyncIntegrationTests(site_chrome_test.ChromeTestBase):
|
| version = 1
|
|
|
| def run_once(self):
|
| - dep = 'chrome_test'
|
| - dep_dir = os.path.join(self.autodir, 'deps', dep)
|
| - password_file = '%s/sync_password.txt' % dep_dir
|
| + password_file = '%s/sync_password.txt' % self.dep_dir
|
|
|
| self.run_chrome_test('sync_integration_tests',
|
| ('--password-file-for-test=%s ' +
|
| '--test-terminate-timeout=300000') % password_file)
|
| -
|
|
|