Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/packages/contracts/test/ArrayLength.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { toStaticArray_uint256_3 } from "../src/codegen/tables/StaticArray.sol";
/**
* @title GetItemValueWrapper
* @dev For testing that calling getItemValue properly reverts
* We use a seperate contract to ensure `expectRevert` does not only check the first external call
* We use a separate contract to ensure `expectRevert` does not only check the first external call
*/
contract GetItemValueWrapper {
function getItemValue(address worldAddress, uint256 _index) public {
Expand Down
2 changes: 1 addition & 1 deletion e2e/packages/sync-test/data/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function serialize(obj: unknown): string {
export function deserialize(blob: string): Record<string, unknown> {
const obj = JSON.parse(blob);

// Check whether the value matches the mattern `bigint(${number}n)`
// Check whether the value matches the pattern `bigint(${number}n)`
// (serialization of bigint in `serialize`)
// and turn it back into a bigint
const regex = /^bigint\((-?\d+)\)$/; // Regular expression pattern.
Expand Down