Skip to content

Commit

Permalink
refactor: small description change
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Wiebe committed Dec 11, 2019
1 parent 7f32214 commit d656a32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/procedures/__tests__/DisableController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe('DisableController', () => {
);
});

test('should throw if account address is different than owner address', async () => {
test('should throw if wallet address is different than owner address', async () => {
contextMock.set('currentWallet', new Wallet({ address: () => Promise.resolve('0x02') }));

// Real call rejects
Expand Down
2 changes: 1 addition & 1 deletion src/procedures/__tests__/FreezeIssuance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe('FreezeIssuance', () => {
);
});

test('should throw if account address is different than owner address', async () => {
test('should throw if wallet address is different than owner address', async () => {
contextMock.set('currentWallet', new Wallet({ address: () => Promise.resolve('0x02') }));

// Real call rejects
Expand Down

0 comments on commit d656a32

Please sign in to comment.