| Index: tests/html/event_customevent_test.dart
|
| diff --git a/tests/html/event_customevent_test.dart b/tests/html/event_customevent_test.dart
|
| index cbda1a78774b416d7a8077e4240853307d7d704f..457715b6ee45ce15146d035728b190681150c795 100644
|
| --- a/tests/html/event_customevent_test.dart
|
| +++ b/tests/html/event_customevent_test.dart
|
| @@ -28,8 +28,8 @@ main() {
|
| expect(ev.detail, {'type': 'detail'});
|
| });
|
|
|
| - var ev = new CustomEvent('foo', canBubble: false, cancelable: false,
|
| - detail: {'type': 'detail'});
|
| + var ev = new CustomEvent('foo',
|
| + canBubble: false, cancelable: false, detail: {'type': 'detail'});
|
| el.dispatchEvent(ev);
|
| expect(fired, isTrue);
|
| });
|
|
|