Skip to content

Commit

Permalink
test: tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm committed Oct 22, 2024
1 parent 9827393 commit e563d7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/actions/sendTransaction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ test('behavior: connector not connected', async () => {
sendTransaction(config, {
connector: config.connectors[1],
to: '0xd2135CfB216b74109775236E36d4b433F1DF507B',
value: parseEther('0.01'),
value: parseEther('0.0001'),
}),
).rejects.toThrowErrorMatchingInlineSnapshot(`
[ConnectorNotConnectedError: Connector not connected.
Expand All @@ -47,7 +47,7 @@ test('behavior: account does not exist on connector', async () => {
sendTransaction(config, {
account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
to: '0xd2135CfB216b74109775236E36d4b433F1DF507B',
value: parseEther('0.01'),
value: parseEther('0.0001'),
}),
).rejects.toThrowErrorMatchingInlineSnapshot(`
[ConnectorAccountNotFoundError: Account "0xA0Cf798816D4b9b9866b5330EEa46a18382f251e" not found for connector "Mock Connector".
Expand Down

0 comments on commit e563d7a

Please sign in to comment.