Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Defi-Moses committed Sep 20, 2024
1 parent 1c11fba commit 1b9d204
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/rest-api/src/tests/destinationTokensRoute.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('destinatonTokens Route', () => {
it('should return destination tokens for valid gas Tokens', async () => {
const response = await request(app).get('/destinationTokens').query({
fromChain: '1',
fromToken: '0x0000000000000000000000000000000000000000',
fromToken: '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE',
})

expect(response.status).toBe(200)
Expand Down
2 changes: 1 addition & 1 deletion packages/rest-api/src/tests/tokenListRoute.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('Index Route', () => {

expect(keys.length).toBe(62)
expect(response.body['ETH']['addresses']['1']).toBe(
'0x0000000000000000000000000000000000000000'
'0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE'
)
expect(response.body['SYN']['addresses']['1']).toBe(
'0x0f2d719407fdbeff09d87557abb7232601fd9f29'
Expand Down

0 comments on commit 1b9d204

Please sign in to comment.