| Index: tests/html/js_typed_interop_test.dart
|
| diff --git a/tests/html/js_typed_interop_test.dart b/tests/html/js_typed_interop_test.dart
|
| index 431d533037e10d83a3493fd049c0da557b007927..2c6ff189b7b37d744904cc70dc5fb695985acd94 100644
|
| --- a/tests/html/js_typed_interop_test.dart
|
| +++ b/tests/html/js_typed_interop_test.dart
|
| @@ -219,6 +219,8 @@ main() {
|
| group('constructor', () {
|
| test('simple', () {
|
| var o = new ClassWithConstructor("foo", "bar");
|
| + expect(o is ClassWithConstructor, isTrue);
|
| + expect(o is Map, isFalse);
|
| expect(o.a, equals("foo"));
|
| expect(o.b, equals("bar"));
|
| expect(o.getA(), equals("foo"));
|
|
|