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

Unified Diff: tools/perf/measurements/page_cycler_unittest.py

Issue 436453002: Remove page_measurement_results. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again Created 6 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/chrome_proxy/integration_tests/network_metrics_unittest.py ('k') | tools/perf/metrics/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/measurements/page_cycler_unittest.py
diff --git a/tools/perf/measurements/page_cycler_unittest.py b/tools/perf/measurements/page_cycler_unittest.py
index 6564990010ee6f9fecd02bf9e9cad65b59b3c576..6d246fb774b35ac0c4b71784715f62424862e40f 100644
--- a/tools/perf/measurements/page_cycler_unittest.py
+++ b/tools/perf/measurements/page_cycler_unittest.py
@@ -6,7 +6,7 @@ import unittest
from telemetry.core import browser_options
from telemetry.page import page_runner
-from telemetry.results import page_measurement_results
+from telemetry.results import page_test_results
from telemetry.unittest import simple_mock
from measurements import page_cycler
@@ -142,7 +142,7 @@ class PageCyclerUnitTest(unittest.TestCase):
tab = FakeTab()
for i in range(5):
- results = page_measurement_results.PageMeasurementResults()
+ results = page_test_results.PageTestResults()
results.WillRunPage(page)
cycler.WillNavigateToPage(page, tab)
self.assertEqual(max(0, i - 2), tab.clear_cache_calls,
@@ -167,7 +167,7 @@ class PageCyclerUnitTest(unittest.TestCase):
tab = FakeTab()
for i in range(3):
for page in pages:
- results = page_measurement_results.PageMeasurementResults()
+ results = page_test_results.PageTestResults()
results.WillRunPage(page)
cycler.WillNavigateToPage(page, tab)
cycler.MeasurePage(page, tab, results)
@@ -192,7 +192,7 @@ class PageCyclerUnitTest(unittest.TestCase):
for i in range(2):
for page in pages:
- results = page_measurement_results.PageMeasurementResults()
+ results = page_test_results.PageTestResults()
results.WillRunPage(page)
cycler.WillNavigateToPage(page, tab)
cycler.MeasurePage(page, tab, results)
« no previous file with comments | « tools/chrome_proxy/integration_tests/network_metrics_unittest.py ('k') | tools/perf/metrics/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698