Fix prettier
This commit is contained in:
parent
c0d86c42ae
commit
75f1f8829f
|
@ -185,7 +185,12 @@ describe('isCancelTransaction', () => {
|
||||||
})
|
})
|
||||||
it('It should return false if the refundReceiver is not empty', () => {
|
it('It should return false if the refundReceiver is not empty', () => {
|
||||||
// given
|
// given
|
||||||
const transaction = getMockedTxServiceModel({ to: safeAddress, value: '0', data: null, refundReceiver: mockedETHAccount })
|
const transaction = getMockedTxServiceModel({
|
||||||
|
to: safeAddress,
|
||||||
|
value: '0',
|
||||||
|
data: null,
|
||||||
|
refundReceiver: mockedETHAccount,
|
||||||
|
})
|
||||||
|
|
||||||
// when
|
// when
|
||||||
const result = isCancelTransaction(transaction, safeAddress)
|
const result = isCancelTransaction(transaction, safeAddress)
|
||||||
|
|
Loading…
Reference in New Issue