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

Unified Diff: pkg/mutation_observer/test/mutation_observer_test.dart

Issue 51403002: Remove obsolete test (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/mutation_observer/test/mutation_observer_test.dart
diff --git a/pkg/mutation_observer/test/mutation_observer_test.dart b/pkg/mutation_observer/test/mutation_observer_test.dart
index 24dbccf2b6e7f31a5a9dea335da8e84cf6999078..e3bbdf4bbce8ab9add54252a7be66d342ee5741b 100644
--- a/pkg/mutation_observer/test/mutation_observer_test.dart
+++ b/pkg/mutation_observer/test/mutation_observer_test.dart
@@ -101,14 +101,5 @@ testMutationObserver() {
container.append(div1);
div1.append(div2);
});
-
- test('mutation event', () {
- var event = new MutationEvent('something', prevValue: 'prev',
- newValue: 'new', attrName: 'attr');
- expect(event is MutationEvent, isTrue);
- expect(event.prevValue, 'prev');
- expect(event.newValue, 'new');
- expect(event.attrName, 'attr');
- });
});
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698