remove unnecessary deepEqual
This commit is contained in:
parent
39c181dce6
commit
65fb593be2
1 changed files with 2 additions and 2 deletions
|
@ -188,7 +188,7 @@ describe('Wallet', function() {
|
|||
addUtxoToOutput(expectedUtxo)
|
||||
addUtxoToOutput(utxo1)
|
||||
|
||||
assert.deepEqual(wallet.getBalance(), 40000)
|
||||
assert.equal(wallet.getBalance(), 40000)
|
||||
})
|
||||
|
||||
it('excludes spent outputs', function(){
|
||||
|
@ -196,7 +196,7 @@ describe('Wallet', function() {
|
|||
addUtxoToOutput(utxo1)
|
||||
wallet.outputs[utxo1.hash + ':' + utxo1.outputIndex].spend = "sometxn:m"
|
||||
|
||||
assert.deepEqual(wallet.getBalance(), 20000)
|
||||
assert.equal(wallet.getBalance(), 20000)
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue