Fix prettier

This commit is contained in:
Agustin Pane 2021-01-21 17:46:32 -03:00 committed by Daniel Sanchez
parent b6577f8e6f
commit a604da1b6c
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)