Chromium Code Reviews| Index: tests/html/xsltprocessor_test.dart |
| =================================================================== |
| --- tests/html/xsltprocessor_test.dart (revision 14114) |
| +++ tests/html/xsltprocessor_test.dart (working copy) |
| @@ -9,7 +9,7 @@ |
| test('constructorTest', () { |
| var processor = new XSLTProcessor(); |
| - Expect.isTrue(processor != null); |
| - Expect.isTrue(processor is XSLTProcessor); |
| + expect(processor, isNotNull); |
| + expect(processor, new isInstanceOf<XSLTProcessor>('XSLTProcessor')); |
| }); |
| } |