| Index: Tools/Scripts/webkitpy/common/system/executive_unittest.py
|
| diff --git a/Tools/Scripts/webkitpy/common/system/executive_unittest.py b/Tools/Scripts/webkitpy/common/system/executive_unittest.py
|
| index 304dc873c7490ace9c5506c1400f163fecac97a5..e8a977463fc25cf4f50fea0ba994f95df6e31bdf 100644
|
| --- a/Tools/Scripts/webkitpy/common/system/executive_unittest.py
|
| +++ b/Tools/Scripts/webkitpy/common/system/executive_unittest.py
|
| @@ -36,13 +36,10 @@ import time
|
| import unittest
|
|
|
| # Since we execute this script directly as part of the unit tests, we need to ensure
|
| -# that Tools/Scripts and Tools/Scripts/thirdparty are in sys.path for the next imports to work correctly.
|
| +# that Tools/Scripts is in sys.path for the next imports to work correctly.
|
| script_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
| if script_dir not in sys.path:
|
| sys.path.append(script_dir)
|
| -third_party_py = os.path.join(script_dir, "webkitpy", "thirdparty")
|
| -if third_party_py not in sys.path:
|
| - sys.path.append(third_party_py)
|
|
|
|
|
| from webkitpy.common.system.executive import Executive, ScriptError
|
|
|