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

Unified Diff: tests/html/xsltprocessor_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/xsltprocessor_test.dart
diff --git a/tests/html/xsltprocessor_test.dart b/tests/html/xsltprocessor_test.dart
index c56f8c6676bdb5fe2bc8d1362635fd861ecb2f64..ea803f62bcba54e049ffaefc3a98b008e86dd4c5 100644
--- a/tests/html/xsltprocessor_test.dart
+++ b/tests/html/xsltprocessor_test.dart
@@ -7,12 +7,12 @@ main() {
useHtmlConfiguration();
- var isXSLTProcessor =
- predicate((x) => x is XSLTProcessor, 'is an XSLTProcessor');
+ var isXsltProcessor =
+ predicate((x) => x is XsltProcessor, 'is an XsltProcessor');
test('constructorTest', () {
- var processor = new XSLTProcessor();
+ var processor = new XsltProcessor();
expect(processor, isNotNull);
- expect(processor, isXSLTProcessor);
+ expect(processor, isXsltProcessor);
});
}

Powered by Google App Engine
This is Rietveld 408576698