diff --git a/src/reducers/compose.test.ts b/src/reducers/compose.test.ts index c13e0bd4a..181e3b335 100644 --- a/src/reducers/compose.test.ts +++ b/src/reducers/compose.test.ts @@ -167,7 +167,7 @@ describe('compose reducer', () => { type: ME_FETCH_SUCCESS, me: { pleroma: { settings_store: { soapbox_fe: { defaultPrivacy: 'unlisted' } } } }, }; - expect(reducer(state, action).toJS().default).toMatchObject({ + expect(reducer(state, action as any).toJS().default).toMatchObject({ privacy: 'unlisted', }); });