Skip to content

Commit

Permalink
[FIX] Typo in unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
mccwdev committed Oct 30, 2023
1 parent 5950e5e commit abda2a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_wallets.py
Original file line number Diff line number Diff line change
Expand Up @@ -2741,7 +2741,7 @@ def test_wallet_mixed_witness_types_send(self):
t = w.sweep('blt1qgk3zp30pnpggylp84enh0zpfpkdu63kv4xak4p', fee=30000)
self.assertEqual(len(t.inputs), len(w.addresslist()) * 2)
self.assertEqual(t.outputs[0].value, int(w.balance() - 30000))
self.assertEqual(t.verified)
self.assertTrue(t.verified)
t.send()
self.assertIsNone(t.error)

0 comments on commit abda2a4

Please sign in to comment.