Fix prettier

This commit is contained in:
Agustin Pane 2021-01-21 17:46:32 -03:00
parent c0d86c42ae
commit 75f1f8829f
1 changed files with 6 additions and 1 deletions

View File

@ -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)