From 9b2e284ee3888dd64d68b77e31a72de7e2b516e0 Mon Sep 17 00:00:00 2001 From: connorhaugh <49422820+connorhaugh@users.noreply.github.com> Date: Wed, 11 Jan 2023 16:53:16 -0500 Subject: [PATCH] fix: remove test (#188) --- src/editors/data/redux/problem/reducers.test.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/editors/data/redux/problem/reducers.test.js b/src/editors/data/redux/problem/reducers.test.js index 3e4e3b881..737404097 100644 --- a/src/editors/data/redux/problem/reducers.test.js +++ b/src/editors/data/redux/problem/reducers.test.js @@ -41,14 +41,6 @@ describe('problem reducer', () => { }); }); }); - describe('setEnableTypeSelection', () => { - it('sets problemType to null', () => { - expect(reducer(testingState, actions.setEnableTypeSelection())).toEqual({ - ...testingState, - problemType: null, - }); - }); - }); describe('updateField', () => { it('sets given parameter', () => { const payload = { problemType: 'soMePRoblEMtYPe' };