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

Unified Diff: chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py

Issue 4698004: [Chrome OS] Cleanup and modify Chrome-for-ChromeOS autotest wrappers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome
Patch Set: Created 10 years, 1 month 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: 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)
-

Powered by Google App Engine
This is Rietveld 408576698