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

Unified Diff: tools/perf/fetch_benchmark_deps_unittest.py

Issue 2300653002: [tools/perf] Update code to reference py_utils.cloud_storage (Closed)
Patch Set: update Created 4 years, 4 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/perf/fetch_benchmark_deps.py ('k') | tools/perf/page_sets/pregenerated_profile_shared_state.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « tools/perf/fetch_benchmark_deps.py ('k') | tools/perf/page_sets/pregenerated_profile_shared_state.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698