diff --git a/test/libsolidity/syntaxTests/types/struct/typehash_member_mapping.sol b/test/libsolidity/syntaxTests/types/struct/typehash_member_mapping.sol index 8a876dec9..b5edc62ab 100644 --- a/test/libsolidity/syntaxTests/types/struct/typehash_member_mapping.sol +++ b/test/libsolidity/syntaxTests/types/struct/typehash_member_mapping.sol @@ -6,4 +6,4 @@ contract C { bytes32 h = type(S).typehash; } // ---- -// TypeError 9518: (92-108): "typehash" cannot be used for structs with members of "mapping(uint256 => uint256)" type. +// TypeError 9518: (91-107): "typehash" cannot be used for structs with members of "mapping(uint256 => uint256)" type. diff --git a/test/libsolidity/syntaxTests/types/struct/typehash_recursive_struct.sol b/test/libsolidity/syntaxTests/types/struct/typehash_recursive_struct.sol index eddfc17df..64d34716c 100644 --- a/test/libsolidity/syntaxTests/types/struct/typehash_recursive_struct.sol +++ b/test/libsolidity/syntaxTests/types/struct/typehash_recursive_struct.sol @@ -6,4 +6,4 @@ contract C { bytes32 h = type(S).typehash; } // ---- -// TypeError 9298: (68-84): "typehash" cannot be used for recursive structs. +// TypeError 9298: (66-82): "typehash" cannot be used for recursive structs. diff --git a/test/libsolidity/syntaxTests/types/struct/typehash_recursive_struct_2.sol b/test/libsolidity/syntaxTests/types/struct/typehash_recursive_struct_2.sol index 3ff539237..11897755a 100644 --- a/test/libsolidity/syntaxTests/types/struct/typehash_recursive_struct_2.sol +++ b/test/libsolidity/syntaxTests/types/struct/typehash_recursive_struct_2.sol @@ -11,4 +11,4 @@ contract C { bytes32 h = type(S).typehash; } // ---- -// TypeError 9298: (121-137): "typehash" cannot be used for recursive structs. +// TypeError 9298: (119-135): "typehash" cannot be used for recursive structs.