From b6f99e05eb2f0610a8d69a6e0ae0f560b6f759fb Mon Sep 17 00:00:00 2001 From: Samer Afach Date: Wed, 31 Jan 2024 13:07:30 +0400 Subject: [PATCH] Typo fix --- test/functional/wallet_tx_compose.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/wallet_tx_compose.py b/test/functional/wallet_tx_compose.py index 1a8a00469d..cf8f80d457 100644 --- a/test/functional/wallet_tx_compose.py +++ b/test/functional/wallet_tx_compose.py @@ -128,14 +128,14 @@ async def async_test(self): # transfer all except 1 coin to the new acc, and add 0.1 fee outputs = [ TxOutput(acc1_address, str(coins_to_send - 1)), TxOutput(change_address, "0.9") ] - # check we have 1 unsepnt utxo + # check we have 1 unspent utxo utxos = await wallet.list_utxos() assert_equal(len(utxos), 1) # compose a transaction with that utxo and 2 outputs output = await wallet.compose_transaction(outputs, utxos) assert_in("The hex encoded transaction is", output) - # check the fees incude the 0.1 + # check the fees include the 0.1 assert_in(f"Coins amount: 0.1", output) encoded_tx = output.split('\n')[1]