Skip to content

Commit 9f6993e

Browse files
Format
1 parent d544521 commit 9f6993e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/react_client_test.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,7 @@ main() {
146146
final jsProps = unconvertJsProps(component);
147147
for (final key in knownEventKeys) {
148148
expect(jsProps[key], isNotNull, reason: 'JS event handler prop should not be null');
149-
expect(
150-
jsProps[key], anyOf(same(originalHandlers[key]), same(allowInterop(originalHandlers[key]!))),
149+
expect(jsProps[key], anyOf(same(originalHandlers[key]), same(allowInterop(originalHandlers[key]!))),
151150
reason: 'JS event handler should be the original or original wrapped in allowInterop');
152151
}
153152
});

0 commit comments

Comments
 (0)