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

Unified Diff: tests/html/custom/document_register_basic_test.dart

Issue 23033011: Enable these checks in custom tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: upload again Created 7 years, 4 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: tests/html/custom/document_register_basic_test.dart
diff --git a/tests/html/custom/document_register_basic_test.dart b/tests/html/custom/document_register_basic_test.dart
index a6aa7462e25d99c4cfb4af36465d77484f1ec65c..718358afbe05b40f14df877a4b1758fb4131c005 100644
--- a/tests/html/custom/document_register_basic_test.dart
+++ b/tests/html/custom/document_register_basic_test.dart
@@ -92,9 +92,8 @@ main() {
// Ensuring the wrapper is retained
var someProperty = new Expando();
someProperty[parsedFoo] = "hello";
- // TODO(vsm): Fix this in Dartium.
- // expect(someProperty[container.firstChild], someProperty[parsedFoo]);
- // expect(container.firstChild, parsedFoo);
+ expect(container.firstChild, parsedFoo);
+ expect(someProperty[container.firstChild], someProperty[parsedFoo]);
// Having another constructor
document.register(Bar.tag, Bar);
« 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