From 626b3773711c0617d0f85097051278a68f0b4d76 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 12 Oct 2023 20:09:58 -0500 Subject: [PATCH] Fix type in compose.test.ts --- src/reducers/compose.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', }); });