Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
clowestab committed Oct 14, 2024
1 parent 422d559 commit 42faac3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/components/GatewayVM.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ contract TestGatewayVM is Test {
}

function test_smallKeccak() external pure {
for (uint256 i = 0; i < 100; i++) {
assertEq(
GatewayVM.smallKeccak(bytes32(i)),
keccak256(abi.encode(bytes32(i)))
);
}
for (uint256 i = 0; i < 100; i++) {
assertEq(
GatewayVM.smallKeccak(bytes32(i)),
keccak256(abi.encode(bytes32(i)))
);
}
}

}

0 comments on commit 42faac3

Please sign in to comment.