| 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..31896bdf81002c53bb05ac0db2dfac2310e1b520 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.append(os.path.join(_THIS_DIR, os.pardir))
|
| +sys.path.append(os.path.join(_THIS_DIR, os.pardir, 'client'))
|
| +sys.path.append(os.path.join(_THIS_DIR, os.pardir, 'server'))
|
|
|
| import chrome_paths
|
| import chromedriver
|
|
|