| Index: tests/html/form_data_test.dart
|
| ===================================================================
|
| --- tests/html/form_data_test.dart (revision 14114)
|
| +++ tests/html/form_data_test.dart (working copy)
|
| @@ -16,13 +16,13 @@
|
| test('constructorTest1', () {
|
| var form = new FormData();
|
| expect(form, isNotNull);
|
| - expect(form is FormData);
|
| + expect(form, new isInstanceOf<FormData>('FormData'));
|
| });
|
|
|
| test('constructorTest2', () {
|
| var form = new FormData(new FormElement());
|
| expect(form, isNotNull);
|
| - expect(form is FormData);
|
| + expect(form, new isInstanceOf<FormData>('FormData'));
|
| });
|
|
|
| test('appendTest', () {
|
|
|