Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
Test was expecting a checksummed response, and this PR changes it to lowercase.
  • Loading branch information
jessgusclark committed Mar 17, 2021
1 parent 1c3d40f commit 0caacec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __test__/transaction.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ describe('Transaction Suite', () => {
it('ProcessRawTransaction', async () => {
const expected = {
data: undefined,
from: '0x1c067E968bFF32a2f231BED86cc6f56f3fF49Ad0',
from: '0x1c067e968bff32a2f231bed86cc6f56f3ff49ad0',
gas: 21000,
gasPrice: { high: '1000', low: '500', medium: '800' },
nonce: 0,
to: '0x1c067E968bFF32a2f231BED86cc6f56f3fF49Ad0',
to: '0x1c067e968bff32a2f231bed86cc6f56f3ff49ad0',
value: 1,
};
const docExpected = {
Expand Down

0 comments on commit 0caacec

Please sign in to comment.