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, }); }); });