Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
shuffledex committed May 12, 2020
1 parent 200f8b3 commit 9cfc544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/procedures/__tests__/transferToken.ts
Expand Up @@ -63,7 +63,7 @@ describe('transferToken procedure', () => {
polkadotMockUtils.cleanup();
});

test('should throw an error with possible reason if transfer status is different than success and failure', () => {
test('should throw an error with reason if transfer status is different than success and failure', () => {
const amount = new BigNumber(100);
const status = TransferStatus.FundsLimitReached;

Expand All @@ -81,7 +81,7 @@ describe('transferToken procedure', () => {
);
});

test('should throw an error without possible reason if transfer status is failure', () => {
test('should throw an error without reason if transfer status is failure', () => {
const amount = new BigNumber(100);
const status = TransferStatus.Failure;

Expand Down

0 comments on commit 9cfc544

Please sign in to comment.