From 426f3f90ab36650967f7a28fc50eef64fb090e45 Mon Sep 17 00:00:00 2001 From: Thore Strassburg Date: Wed, 8 Sep 2021 14:20:11 +0200 Subject: [PATCH] fixup! dApp: add new channel action form component --- .../unit/components/channels/channel-action-form.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raiden-dapp/tests/unit/components/channels/channel-action-form.spec.ts b/raiden-dapp/tests/unit/components/channels/channel-action-form.spec.ts index 3de6ad7c67..3211f40518 100644 --- a/raiden-dapp/tests/unit/components/channels/channel-action-form.spec.ts +++ b/raiden-dapp/tests/unit/components/channels/channel-action-form.spec.ts @@ -95,7 +95,7 @@ async function submitForm(wrapper: Wrapper): Promise { describe('ChannelActionForm.vue', () => { describe('token address', () => { - test('hides form section if set so', async () => { + test('hides form section', async () => { const wrapper = await createWrapper({ hideTokenAddress: true }); const display = wrapper.find( '.channel-action-form__token-address.channel-action-form__fixed-input-wrapper', @@ -148,7 +148,7 @@ describe('ChannelActionForm.vue', () => { }); describe('partner address', () => { - test('hides form section if set so', async () => { + test('hides form section', async () => { const wrapper = await createWrapper({ hidePartnerAddress: true }); const display = wrapper.find( '.channel-action-form__partner-address.channel-action-form__fixed-input-wrapper',