Index: tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html |
diff --git a/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html b/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html |
index 11d4bbdf7ee3af9f6ff858a165b570c0dfed346e..20c39f9534847857a5d9599ef333e83d8fffcd58 100644 |
--- a/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html |
+++ b/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html |
@@ -168,9 +168,9 @@ tr.b.unittest.testSuite(function() { |
var process = model.getOrCreateProcess(1); |
fieldAndDumpMask.forEach(function(mask, i) { |
var timestamp = 10 + i; |
- var gmd = addGlobalMemoryDump(model, timestamp); |
+ var gmd = addGlobalMemoryDump(model, {ts: timestamp}); |
if (mask & DUMP) { |
- var pmd = addProcessMemoryDump(gmd, process, timestamp); |
+ var pmd = addProcessMemoryDump(gmd, process, {ts: timestamp}); |
dumpCreatedCallback(pmd, mask); |
} |
}); |