Index: chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py |
diff --git a/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py b/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py |
index 2cba5f1f6f45836dfe48c63638ee3fb6581a215a..7588ef522f05ac76ae9c17335d6efc36e3d7db98 100644 |
--- a/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py |
+++ b/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py |
@@ -2,6 +2,7 @@ |
# 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_PyAutoFunctionalTests(site_chrome_test.ChromeTestBase): |
@@ -9,6 +10,8 @@ class desktopui_PyAutoFunctionalTests(site_chrome_test.ChromeTestBase): |
version = 1 |
def run_once(self): |
+ deps_dir = os.path.join(self.autodir, 'deps') |
+ self.test_binary_dir = '' |
pyauto_script = '%s/test_src/chrome/test/functional/' \ |
- 'pyauto_functional.py' % self.dep_dir |
+ 'pyauto_functional.py' % deps_dir |
self.run_chrome_test(pyauto_script) |