Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorAgnin committed Dec 19, 2022
1 parent a7f11ae commit 7d3816a
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions test/eth_url_parser_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -149,15 +149,16 @@ void main() {
);

expect(
EthUrlParser.build(
TransactionRequest(
scheme: 'ethereum',
targetAddress: '0x1234DEADBEEF5678ABCD1234DEADBEEF5678ABCD',
chainId: 1,
),
EthUrlParser.build(
TransactionRequest(
scheme: 'ethereum',
targetAddress: '0x1234DEADBEEF5678ABCD1234DEADBEEF5678ABCD',
chainId: 1,
),
'ethereum:0x1234DEADBEEF5678ABCD1234DEADBEEF5678ABCD@1',
reason: 'Can build a URL with chain id');
),
'ethereum:0x1234DEADBEEF5678ABCD1234DEADBEEF5678ABCD@1',
reason: 'Can build a URL with chain id',
);

expect(
EthUrlParser.build(
Expand Down

0 comments on commit 7d3816a

Please sign in to comment.