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

Unified Diff: tests/html/domparser_test.dart

Issue 11419300: Dartifying dart:html type names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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/domparser_test.dart
diff --git a/tests/html/domparser_test.dart b/tests/html/domparser_test.dart
index a40516f110591021d7864ed13b1d630a51297b93..a6f624699cf7f3da4127cb98d142c6c185e3471c 100644
--- a/tests/html/domparser_test.dart
+++ b/tests/html/domparser_test.dart
@@ -7,11 +7,11 @@ main() {
useHtmlConfiguration();
- var isDOMParser = predicate((x) => x is DOMParser, 'is a DOMParser');
+ var isDomParser = predicate((x) => x is DomParser, 'is a DomParser');
test('constructorTest', () {
- var ctx = new DOMParser();
+ var ctx = new DomParser();
expect(ctx, isNotNull);
- expect(ctx, isDOMParser);
+ expect(ctx, isDomParser);
});
}

Powered by Google App Engine
This is Rietveld 408576698