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

Unified Diff: tracing/tracing/model/model_test.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Sync to head Created 4 years, 5 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
Index: tracing/tracing/model/model_test.html
diff --git a/tracing/tracing/model/model_test.html b/tracing/tracing/model/model_test.html
index 9f9f376e55f33f810a4e2ef52a4ecda74013597a..75c1f9d515530fbba974d5cbea454c2b689abf3e 100644
--- a/tracing/tracing/model/model_test.html
+++ b/tracing/tracing/model/model_test.html
@@ -232,16 +232,6 @@ tr.b.unittest.testSuite(function() {
assert.deepEqual(['categoryA', 'categoryB'], m.categories);
});
- test('model_iterateAllEvents', function() {
- var m = createModelWithOneOfEverything();
- var wasCalled = false;
- m.iterateAllEvents(function(event) {
- assert.isTrue(event instanceof tr.model.Event);
- wasCalled = true;
- });
- assert.isTrue(wasCalled);
- });
-
test('getEventByStableId', function() {
var m = new tr.Model();
var p = m.getOrCreateProcess(0);

Powered by Google App Engine
This is Rietveld 408576698