Skip to content

Commit faf9732

Browse files
committed
chore: linter changes
1 parent 02f9669 commit faf9732

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

__tests__/integration/hathorwallet_facade.test.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1753,7 +1753,9 @@ describe('authority utxo selection', () => {
17531753
await hWallet.markUtxoSelected(mintInput.txId, mintInput.index, true);
17541754

17551755
// 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+
]);
17571759
await expect(
17581760
hWallet.getMintAuthority(tokenUid, { many: false, only_available_utxos: false })
17591761
).resolves.toStrictEqual([mintInput]);
@@ -1775,7 +1777,9 @@ describe('authority utxo selection', () => {
17751777
await hWallet.markUtxoSelected(meltInput.txId, meltInput.index, true);
17761778

17771779
// 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+
]);
17791783
await expect(
17801784
hWallet.getMeltAuthority(tokenUid, { many: false, only_available_utxos: false })
17811785
).resolves.toStrictEqual([meltInput]);

0 commit comments

Comments
 (0)