Skip to content

Commit

Permalink
Fix tc
Browse files Browse the repository at this point in the history
  • Loading branch information
octave08 committed Sep 14, 2023
1 parent 3ac6cac commit f5fbb00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test('Generate JSON RPC request payload with method `eth_sendGaslessTransaction`

const requestPayload = magic.wallet.request.mock.calls[0][0];
expect(requestPayload.method).toBe('eth_sendGaslessTransaction');
expect(requestPayload.params).toEqual([[address, sericalizedTranasction]]);
expect(requestPayload.params).toEqual([address, sericalizedTranasction]);
});

test('method should return a PromiEvent', () => {
Expand Down

0 comments on commit f5fbb00

Please sign in to comment.