Skip to content

Commit

Permalink
refactor: constant
Browse files Browse the repository at this point in the history
  • Loading branch information
yonadaa committed Mar 11, 2024
1 parent 7bf3cd6 commit 5f5fc7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/packages/contracts/test/StaticArray.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { MudTest } from "@latticexyz/world/test/MudTest.t.sol";

import { toStaticArray_uint256_3 } from "../src/codegen/tables/StaticArray.sol";

contract StaticArrayTest is MudTest {
uint256 internal memoryCorruptionCheck = uint256(keccak256("memoryCorruptionCheck"));
uint256 constant memoryCorruptionCheck = uint256(keccak256("memoryCorruptionCheck"));

contract StaticArrayTest is MudTest {
/*
* Test that the data is correctly copied when the dynamic and static arrays are the same length
*/
Expand Down

0 comments on commit 5f5fc7c

Please sign in to comment.