@@ -210,7 +210,7 @@ describe('numberInputReducer', () => {
210
210
211
211
const action : NumberInputReducerAction = {
212
212
type : NumberInputActionTypes . increment ,
213
- shiftKey : false ,
213
+ applyMultiplier : false ,
214
214
context : {
215
215
getInputValueAsString : defaultGetInputValueAsString ,
216
216
shiftMultiplier : 10 ,
@@ -231,7 +231,7 @@ describe('numberInputReducer', () => {
231
231
232
232
const action : NumberInputReducerAction = {
233
233
type : NumberInputActionTypes . increment ,
234
- shiftKey : false ,
234
+ applyMultiplier : false ,
235
235
context : {
236
236
getInputValueAsString : defaultGetInputValueAsString ,
237
237
shiftMultiplier : 10 ,
@@ -253,7 +253,7 @@ describe('numberInputReducer', () => {
253
253
254
254
const action : NumberInputReducerAction = {
255
255
type : NumberInputActionTypes . increment ,
256
- shiftKey : true ,
256
+ applyMultiplier : true ,
257
257
context : {
258
258
getInputValueAsString : defaultGetInputValueAsString ,
259
259
shiftMultiplier : 10 ,
@@ -277,7 +277,7 @@ describe('numberInputReducer', () => {
277
277
278
278
const action : NumberInputReducerAction = {
279
279
type : NumberInputActionTypes . decrement ,
280
- shiftKey : false ,
280
+ applyMultiplier : false ,
281
281
context : {
282
282
getInputValueAsString : defaultGetInputValueAsString ,
283
283
shiftMultiplier : 10 ,
@@ -298,7 +298,7 @@ describe('numberInputReducer', () => {
298
298
299
299
const action : NumberInputReducerAction = {
300
300
type : NumberInputActionTypes . decrement ,
301
- shiftKey : false ,
301
+ applyMultiplier : false ,
302
302
context : {
303
303
getInputValueAsString : defaultGetInputValueAsString ,
304
304
shiftMultiplier : 10 ,
@@ -320,7 +320,7 @@ describe('numberInputReducer', () => {
320
320
321
321
const action : NumberInputReducerAction = {
322
322
type : NumberInputActionTypes . decrement ,
323
- shiftKey : true ,
323
+ applyMultiplier : true ,
324
324
context : {
325
325
getInputValueAsString : defaultGetInputValueAsString ,
326
326
shiftMultiplier : 10 ,
0 commit comments