Skip to content

Commit

Permalink
fix: unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
N3TC4T committed Sep 14, 2023
1 parent c3031bd commit a350916
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/services/__tests__/NetworkService.test.ts
Expand Up @@ -50,11 +50,11 @@ describe('NetworkService', () => {
expect(availableFees).toStrictEqual({
availableFees: [
{ type: 'LOW', value: '15' },
{ type: 'MEDIUM', value: '16' },
{ type: 'HIGH', value: '17' },
{ type: 'MEDIUM', value: '20' },
{ type: 'HIGH', value: '30' },
],
feeHooks: 0,
suggested: 'MEDIUM',
suggested: 'LOW',
});

spy0.mockRestore();
Expand Down Expand Up @@ -94,11 +94,11 @@ describe('NetworkService', () => {
expect(availableFees).toStrictEqual({
availableFees: [
{ type: 'LOW', value: '6186' },
{ type: 'MEDIUM', value: '6496' },
{ type: 'HIGH', value: '6805' },
{ type: 'MEDIUM', value: '7500' },
{ type: 'HIGH', value: '11000' },
],
feeHooks: 6176,
suggested: 'MEDIUM',
suggested: 'LOW',
});

spy0.mockRestore();
Expand Down

0 comments on commit a350916

Please sign in to comment.