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

Unified Diff: Tools/Scripts/webkitpy/common/system/executive_unittest.py

Issue 654063002: Switch webkitpy to use the typ test framework (delete webkitpy.test). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix typo for bot_test_expectations Created 6 years, 2 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
« no previous file with comments | « Tools/Scripts/test-webkitpy ('k') | Tools/Scripts/webkitpy/common/system/outputcapture.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Tools/Scripts/test-webkitpy ('k') | Tools/Scripts/webkitpy/common/system/outputcapture.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698