Skip to content

Commit

Permalink
tweak value assignment as per suggestion
Browse files Browse the repository at this point in the history
Co-authored-by: Fuxing Loh <[email protected]>
  • Loading branch information
kodemon and fuxingloh authored Feb 18, 2022
1 parent add7b3a commit e997a38
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ describe('Wallet without masternode', () => {
})

it('should listWallets', async () => {
await expect(client.wallet.listWallets()).resolves.toEqual(['', 'test'])
const wallets = await client.wallet.listWallets()
expect(wallets).toStrictEqual(['', 'test'])
})
})

Expand Down

0 comments on commit e997a38

Please sign in to comment.