diff --git a/raiden-dapp/tests/unit/components/address-input.spec.ts b/raiden-dapp/tests/unit/components/address-input.spec.ts index c8d41e98e0..0bbdbe98ac 100644 --- a/raiden-dapp/tests/unit/components/address-input.spec.ts +++ b/raiden-dapp/tests/unit/components/address-input.spec.ts @@ -249,7 +249,7 @@ describe('AddressInput', () => { }); describe('restricted addresses', () => { - test('should show error message when the user enters address not part of the restrited list', async () => { + test('should show error message when the user enters address not part of the restricted list', async () => { wrapper = createWrapper('', undefined, false, undefined, [restrictedAddress]); mockInput(wrapper, onlineTarget); await flushWrapper(wrapper); diff --git a/raiden-dapp/tests/unit/components/amount-input.spec.ts b/raiden-dapp/tests/unit/components/amount-input.spec.ts index 76cc7c159d..7cff35c581 100644 --- a/raiden-dapp/tests/unit/components/amount-input.spec.ts +++ b/raiden-dapp/tests/unit/components/amount-input.spec.ts @@ -156,7 +156,7 @@ describe('AmountInput.vue', () => { }); }); - describe('adapt zero input values to changing decimals', () => { + describe('adapt zero input values to decimals', () => { test('changes zero decimal to multi decimal if input is zero', async () => { wrapper = createWrapper({ value: '0', token: tokenWithZeroDecimals });