mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-22 01:36:56 +01:00
Remove unnecessary returns
This commit is contained in:
parent
3389726cb2
commit
ac0a124054
@ -36,7 +36,7 @@ test('Create valid output with default amount', t => {
|
||||
public_keys: ['abc']
|
||||
}
|
||||
const res = Transaction.makeOutput(condition)
|
||||
return t.deepEqual(res, expected)
|
||||
t.deepEqual(res, expected)
|
||||
})
|
||||
|
||||
|
||||
@ -53,7 +53,7 @@ test('Create valid output with custom amount', t => {
|
||||
public_keys: ['abc']
|
||||
}
|
||||
const res = Transaction.makeOutput(condition, customAmount)
|
||||
return t.deepEqual(res, expected)
|
||||
t.deepEqual(res, expected)
|
||||
})
|
||||
|
||||
test('Pass condition not based on public_keys to makeOutput', t => {
|
||||
@ -68,7 +68,7 @@ test('Pass condition not based on public_keys to makeOutput', t => {
|
||||
public_keys: []
|
||||
}
|
||||
const res = Transaction.makeOutput(condition)
|
||||
return t.deepEqual(res, expected)
|
||||
t.deepEqual(res, expected)
|
||||
})
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user