| Index: pkg/dev_compiler/test/codegen/lib/html/non_instantiated_is_test.dart
|
| diff --git a/pkg/dev_compiler/test/codegen/lib/html/non_instantiated_is_test.dart b/pkg/dev_compiler/test/codegen/lib/html/non_instantiated_is_test.dart
|
| index b226ea7a40cd99f1edb950f53b14698026019c99..0865b073933ac4142894766c489223974b7fe45b 100644
|
| --- a/pkg/dev_compiler/test/codegen/lib/html/non_instantiated_is_test.dart
|
| +++ b/pkg/dev_compiler/test/codegen/lib/html/non_instantiated_is_test.dart
|
| @@ -6,15 +6,11 @@
|
| // checks of native classes that are not instantiated.
|
|
|
| import 'dart:html';
|
| -import 'package:unittest/unittest.dart';
|
| -import 'package:unittest/html_config.dart';
|
| +
|
| +import 'package:expect/expect.dart';
|
|
|
| var a = [new Object()];
|
|
|
| main() {
|
| - useHtmlConfiguration();
|
| -
|
| - test('is', () {
|
| - expect(a[0] is Node, isFalse);
|
| - });
|
| + Expect.isFalse(a[0] is Node);
|
| }
|
|
|