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

Unified Diff: appengine/swarming/server/task_scheduler_test.py

Issue 1925343002: swarming: IsolatedOperation -> OperationStats (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: update comment Created 4 years, 8 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 | « appengine/swarming/server/task_result_test.py ('k') | appengine/swarming/swarming_rpcs.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/server/task_scheduler_test.py
diff --git a/appengine/swarming/server/task_scheduler_test.py b/appengine/swarming/server/task_scheduler_test.py
index b975205553b575f57d91d1de89bb79e52d74479b..446161e2267307d5173c6275782660b0ee54a115 100755
--- a/appengine/swarming/server/task_scheduler_test.py
+++ b/appengine/swarming/server/task_scheduler_test.py
@@ -625,13 +625,13 @@ class TaskSchedulerApiTest(test_case.TestCase):
isolated='a'*40, isolatedserver='http://localhost', namespace='c')
performance_stats = task_result.PerformanceStats(
bot_overhead=0.1,
- isolated_download=task_result.IsolatedOperation(
+ isolated_download=task_result.OperationStats(
duration=0.1,
initial_number_items=10,
initial_size=1000,
items_cold='aa',
items_hot='bb'),
- isolated_upload=task_result.IsolatedOperation(
+ isolated_upload=task_result.OperationStats(
duration=0.1,
items_cold='aa',
items_hot='bb'))
« no previous file with comments | « appengine/swarming/server/task_result_test.py ('k') | appengine/swarming/swarming_rpcs.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698