File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1753,7 +1753,9 @@ describe('authority utxo selection', () => {
1753
1753
await hWallet . markUtxoSelected ( mintInput . txId , mintInput . index , true ) ;
1754
1754
1755
1755
// getMintAuthority should return even if the utxo is already selected_as_input
1756
- await expect ( hWallet . getMintAuthority ( tokenUid , { many : false } ) ) . resolves . toStrictEqual ( [ mintInput ] ) ;
1756
+ await expect ( hWallet . getMintAuthority ( tokenUid , { many : false } ) ) . resolves . toStrictEqual ( [
1757
+ mintInput ,
1758
+ ] ) ;
1757
1759
await expect (
1758
1760
hWallet . getMintAuthority ( tokenUid , { many : false , only_available_utxos : false } )
1759
1761
) . resolves . toStrictEqual ( [ mintInput ] ) ;
@@ -1775,7 +1777,9 @@ describe('authority utxo selection', () => {
1775
1777
await hWallet . markUtxoSelected ( meltInput . txId , meltInput . index , true ) ;
1776
1778
1777
1779
// getMeltAuthority should return even if the utxo is already selected_as_input
1778
- await expect ( hWallet . getMeltAuthority ( tokenUid , { many : false } ) ) . resolves . toStrictEqual ( [ meltInput ] ) ;
1780
+ await expect ( hWallet . getMeltAuthority ( tokenUid , { many : false } ) ) . resolves . toStrictEqual ( [
1781
+ meltInput ,
1782
+ ] ) ;
1779
1783
await expect (
1780
1784
hWallet . getMeltAuthority ( tokenUid , { many : false , only_available_utxos : false } )
1781
1785
) . resolves . toStrictEqual ( [ meltInput ] ) ;
You can’t perform that action at this time.
0 commit comments