From 75f1f8829f4056eced3ca4ad0fb5956b95298d71 Mon Sep 17 00:00:00 2001 From: Agustin Pane Date: Thu, 21 Jan 2021 17:46:32 -0300 Subject: [PATCH] Fix prettier --- .../store/actions/__tests__/transactionHelpers.test.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/logic/safe/store/actions/__tests__/transactionHelpers.test.ts b/src/logic/safe/store/actions/__tests__/transactionHelpers.test.ts index 86d342c8..a639ead5 100644 --- a/src/logic/safe/store/actions/__tests__/transactionHelpers.test.ts +++ b/src/logic/safe/store/actions/__tests__/transactionHelpers.test.ts @@ -185,7 +185,12 @@ describe('isCancelTransaction', () => { }) it('It should return false if the refundReceiver is not empty', () => { // given - const transaction = getMockedTxServiceModel({ to: safeAddress, value: '0', data: null, refundReceiver: mockedETHAccount }) + const transaction = getMockedTxServiceModel({ + to: safeAddress, + value: '0', + data: null, + refundReceiver: mockedETHAccount, + }) // when const result = isCancelTransaction(transaction, safeAddress)