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

Unified Diff: chrome/test/chromedriver/test/run_py_tests.py

Issue 22601006: [chromedriver] Restore test_expectations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 7 years, 4 months 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/chromedriver/test/run_py_tests.py
diff --git a/chrome/test/chromedriver/test/run_py_tests.py b/chrome/test/chromedriver/test/run_py_tests.py
index 2acb8691f5a03f6153b900bed665ad1f00464b03..2a19c6c655b78c587907d2ed50ba40f56bf9fe3a 100755
--- a/chrome/test/chromedriver/test/run_py_tests.py
+++ b/chrome/test/chromedriver/test/run_py_tests.py
@@ -14,9 +14,9 @@ import time
import unittest
_THIS_DIR = os.path.abspath(os.path.dirname(__file__))
-sys.path.insert(0, os.path.join(_THIS_DIR, os.pardir))
-sys.path.insert(0, os.path.join(_THIS_DIR, os.pardir, 'client'))
-sys.path.insert(0, os.path.join(_THIS_DIR, os.pardir, 'server'))
+sys.path.insert(1, os.path.join(_THIS_DIR, os.pardir))
+sys.path.insert(1, os.path.join(_THIS_DIR, os.pardir, 'client'))
+sys.path.insert(1, os.path.join(_THIS_DIR, os.pardir, 'server'))
import chrome_paths
import chromedriver

Powered by Google App Engine
This is Rietveld 408576698