| Index: tools/perf/fetch_benchmark_deps_unittest.py
|
| diff --git a/tools/perf/fetch_benchmark_deps_unittest.py b/tools/perf/fetch_benchmark_deps_unittest.py
|
| index 83e96842178ab895e48df5cfff592e28b17b3ea7..12ead09c54f9e60ec3d713b72533f677be2bd14f 100644
|
| --- a/tools/perf/fetch_benchmark_deps_unittest.py
|
| +++ b/tools/perf/fetch_benchmark_deps_unittest.py
|
| @@ -22,7 +22,7 @@ class FetchBenchmarkDepsUnittest(unittest.TestCase):
|
|
|
| It assumes the following telemetry APIs always success:
|
| telemetry.wpr.archive_info.WprArchiveInfo.DownloadArchivesIfNeeded
|
| - catapult_base.cloud_storage.GetFilesInDirectoryIfChanged
|
| + py_utils.cloud_storage.GetFilesInDirectoryIfChanged
|
| """
|
|
|
| def setUp(self):
|
| @@ -46,7 +46,7 @@ class FetchBenchmarkDepsUnittest(unittest.TestCase):
|
| output = StringIO.StringIO()
|
| with mock.patch('telemetry.wpr.archive_info.WprArchiveInfo'
|
| '.DownloadArchivesIfNeeded') as mock_download:
|
| - with mock.patch('catapult_base.cloud_storage'
|
| + with mock.patch('py_utils.cloud_storage'
|
| '.GetFilesInDirectoryIfChanged') as mock_get:
|
| mock_download.return_value = True
|
| mock_get.GetFilesInDirectoryIfChanged.return_value = True
|
|
|