Skip to content

Commit

Permalink
Use isInstanceOf instead of TypeMatcher
Browse files Browse the repository at this point in the history
  • Loading branch information
corwinsheahan-wf committed Feb 26, 2019
1 parent 16d8498 commit 931617a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/react_client_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ main() {
}),
);
expect(unconvertJsProps(instance)['style'],
TypeMatcher<Map<String, dynamic>>());
new isInstanceOf<Map<String, dynamic>>());
});

test('returns props for a composite JS ReactComponent', () {
Expand Down

0 comments on commit 931617a

Please sign in to comment.