Chromium Code Reviews| Index: tests/html/form_element_test.dart |
| =================================================================== |
| --- tests/html/form_element_test.dart (revision 14114) |
| +++ tests/html/form_element_test.dart (working copy) |
| @@ -14,7 +14,7 @@ |
| test('constructorTest1', () { |
| var form = new FormElement(); |
| expect(form, isNotNull); |
| - expect(form is FormElement); |
| + expect(form, new isInstanceOf<FormElement>('FormElement')); |
| }); |
| test('checkValidityTest', () { |