From 21a525ba8de51717c77cc8f14a45e970ccc573f5 Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Fri, 10 Feb 2023 13:39:16 -0500 Subject: [PATCH] Fix dropdown-menu reducer test --- app/soapbox/reducers/__tests__/dropdown-menu.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/soapbox/reducers/__tests__/dropdown-menu.test.ts b/app/soapbox/reducers/__tests__/dropdown-menu.test.ts index 5168d5e73..ff279ea33 100644 --- a/app/soapbox/reducers/__tests__/dropdown-menu.test.ts +++ b/app/soapbox/reducers/__tests__/dropdown-menu.test.ts @@ -3,9 +3,7 @@ import reducer from '../dropdown-menu'; describe('dropdown_menu reducer', () => { it('should return the initial state', () => { expect(reducer(undefined, {} as any).toJS()).toEqual({ - openId: null, - placement: null, - keyboard: false, + isOpen: false, }); }); });