Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit f5080b7

Browse files
Remove unnecessary async in seed unit tests.
1 parent ca7d7f6 commit f5080b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/action/wallet.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ describe('Action Wallet Unit Tests', () => {
333333
expect(store.wallet.seedIndex, 'to equal', 7);
334334
});
335335

336-
it('should decrement seedIndex if greater than 7', async () => {
336+
it('should decrement seedIndex if greater than 7', () => {
337337
store.wallet.seedIndex = 8;
338338
wallet.initPrevSeedPage();
339339
expect(nav.goSelectSeed, 'was not called');
@@ -349,7 +349,7 @@ describe('Action Wallet Unit Tests', () => {
349349
expect(store.wallet.seedIndex, 'to equal', 16);
350350
});
351351

352-
it('should increment seedIndex if less than 16', async () => {
352+
it('should increment seedIndex if less than 16', () => {
353353
store.wallet.seedIndex = 8;
354354
wallet.initNextSeedPage();
355355
expect(nav.goSeedVerify, 'was not called');

0 commit comments

Comments
 (0)