Skip to content

Commit

Permalink
Update Immutable.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored Jan 15, 2025
1 parent a75dd40 commit ec43dbd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/pretty-format/src/__tests__/Immutable.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,9 @@ describe('Immutable.Seq lazy entries', () => {
expect(val).toPrettyPrintTo(expected);
});
test('from Immutable.Map entries', () => {
const val = Immutable.Seq(Immutable.Map(object)).filter(filterer);
const val = Immutable.Seq(Immutable.Map<string, string>(object)).filter(
filterer,
);
expect(val.size).toBeUndefined();
expect(val).toPrettyPrintTo(expected);
});
Expand Down

0 comments on commit ec43dbd

Please sign in to comment.