| Index: tests/lib_strong/html/js_test.dart
|
| diff --git a/tests/lib_strong/html/js_test.dart b/tests/lib_strong/html/js_test.dart
|
| index 1e0cc202036d73ae15a834a0df1533adcf9084cd..bf8ca1c040e4c0ab68191a760474af4bbb6f0697 100644
|
| --- a/tests/lib_strong/html/js_test.dart
|
| +++ b/tests/lib_strong/html/js_test.dart
|
| @@ -708,7 +708,12 @@ main() {
|
| });
|
|
|
| test('convert a Map', () {
|
| - var map = {'a': 1, 'b': 2, 'c': 3};
|
| + var map = {
|
| + 'a': 1,
|
| + 'b': 2,
|
| + 'c': 3,
|
| + 'd': allowInteropCaptureThis((that) => 42)
|
| + };
|
| var jsMap = new JsObject.jsify(map);
|
| expect(!context.callMethod('isArray', [jsMap]), isTrue);
|
| for (final key in map.keys) {
|
|
|