| Index: content/test/gpu/gpu_tests/path_util.py
|
| diff --git a/content/test/gpu/gpu_tests/path_util.py b/content/test/gpu/gpu_tests/path_util.py
|
| index e178d76c164a6e8ab7436224d26ae01d508f038c..b9681e07041713507367479c0f73bf577010135e 100644
|
| --- a/content/test/gpu/gpu_tests/path_util.py
|
| +++ b/content/test/gpu/gpu_tests/path_util.py
|
| @@ -34,7 +34,7 @@ def SetupTelemetryPaths():
|
| if telemetry_path not in sys.path:
|
| sys.path.append(telemetry_path)
|
|
|
| - catapult_base_path = os.path.join(
|
| - chromium_src_dir, 'third_party', 'catapult', 'catapult_base')
|
| - if catapult_base_path not in sys.path:
|
| - sys.path.append(catapult_base_path)
|
| + py_utils_path = os.path.join(
|
| + chromium_src_dir, 'third_party', 'catapult', 'common', 'py_utils')
|
| + if py_utils_path not in sys.path:
|
| + sys.path.append(py_utils_path)
|
|
|