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

Unified Diff: tools/telemetry/telemetry/web_perf/timeline_interaction_record_unittest.py

Issue 313383002: Cleanup interaction creation and add ExecuteJavaScript to action_runner.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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/telemetry/telemetry/web_perf/timeline_interaction_record.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/web_perf/timeline_interaction_record_unittest.py
diff --git a/tools/telemetry/telemetry/web_perf/timeline_interaction_record_unittest.py b/tools/telemetry/telemetry/web_perf/timeline_interaction_record_unittest.py
index d8ffb97771b5a2e801e1688c285fde982577742c..8a30d193a82bd55ad2d8332b6d1bc7fba045c490 100644
--- a/tools/telemetry/telemetry/web_perf/timeline_interaction_record_unittest.py
+++ b/tools/telemetry/telemetry/web_perf/timeline_interaction_record_unittest.py
@@ -59,11 +59,11 @@ class TimelineInteractionRecordTests(unittest.TestCase):
self.assertEquals(True, r.is_smooth)
self.assertEquals(True, r.is_responsive)
- def testGetJavascriptMarker(self):
- smooth_marker = tir_module.TimelineInteractionRecord.GetJavascriptMarker(
+ def testGetJavaScriptMarker(self):
+ smooth_marker = tir_module.TimelineInteractionRecord.GetJavaScriptMarker(
'LogicalName', [tir_module.IS_SMOOTH])
self.assertEquals('Interaction.LogicalName/is_smooth', smooth_marker)
- slr_marker = tir_module.TimelineInteractionRecord.GetJavascriptMarker(
+ slr_marker = tir_module.TimelineInteractionRecord.GetJavaScriptMarker(
'LogicalName', [tir_module.IS_SMOOTH, tir_module.IS_RESPONSIVE])
self.assertEquals('Interaction.LogicalName/is_smooth,is_responsive',
slr_marker)
« no previous file with comments | « tools/telemetry/telemetry/web_perf/timeline_interaction_record.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698