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