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

Unified Diff: tests/html/node_test.dart

Issue 13528004: Remove addLast from List. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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: tests/html/node_test.dart
diff --git a/tests/html/node_test.dart b/tests/html/node_test.dart
index 7a2161addac83bbb1b14fc4ffe62d2216be196b8..7b4b17dbbbf8bc95807d8fd1b5ad287ec4dd033f 100644
--- a/tests/html/node_test.dart
+++ b/tests/html/node_test.dart
@@ -178,12 +178,6 @@ main() {
expect(node.nodes.last, isHRElement);
});
- test('addLast', () {
- var node = makeNode();
- node.nodes.addLast(new Element.tag('hr'));
- expect(node.nodes.last, isHRElement);
- });
-
test('iterator', () {
var nodes = [];
var node = makeNodeWithChildren();

Powered by Google App Engine
This is Rietveld 408576698