Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
snreynolds committed Oct 20, 2024
1 parent d643d65 commit 204f515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/libraries/CalldataDecoder.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ contract CalldataDecoderTest is Test {

function test_fuzz_decodeUint256(uint256 _amount) public {
bytes memory params = abi.encode(_amount);
(uint256 amount) = decoder.decodeUint256(params);
uint256 amount = decoder.decodeUint256(params);

assertEq(amount, _amount);
}
Expand Down

0 comments on commit 204f515

Please sign in to comment.