| 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);
|
| });
|
| }
|
|
|