| Index: Tools/Scripts/webkitpy/test/main.py
|
| diff --git a/Tools/Scripts/webkitpy/test/main.py b/Tools/Scripts/webkitpy/test/main.py
|
| index 5b6c0a8d5b11b08841f8016e042d83d24907dccd..da66ee5e270daeb42364ce0dbf6983af96b61361 100644
|
| --- a/Tools/Scripts/webkitpy/test/main.py
|
| +++ b/Tools/Scripts/webkitpy/test/main.py
|
| @@ -23,11 +23,11 @@
|
|
|
| """unit testing code for webkitpy."""
|
|
|
| +import StringIO
|
| import logging
|
| import multiprocessing
|
| import optparse
|
| import os
|
| -import StringIO
|
| import sys
|
| import time
|
| import traceback
|
| @@ -117,7 +117,7 @@ class Tester(object):
|
| # Make sure PYTHONPATH is set up properly.
|
| sys.path = self.finder.additional_paths(sys.path) + sys.path
|
|
|
| - # FIXME: unittest2 needs to be in sys.path for its internal imports to work.
|
| + # FIXME: coverage needs to be in sys.path for its internal imports to work.
|
| thirdparty_path = self.webkit_finder.path_from_webkit_base('Tools', 'Scripts', 'webkitpy', 'thirdparty')
|
| if not thirdparty_path in sys.path:
|
| sys.path.append(thirdparty_path)
|
|
|