diff options
author | chriseth <chris@ethereum.org> | 2018-07-17 00:18:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-17 00:18:49 +0800 |
commit | 0f23445d84ce1abe8cad8ff438f76f65f3acf77f (patch) | |
tree | cb2b8914e3101f4084b435a242ce80c351f6974f /test/libsolidity/syntaxTests/array | |
parent | 29dae15c50277d52087f2eddea7d2033754e2c1f (diff) | |
parent | fdfdddd8dc34a3a31dd254b75c4b032e4b85679b (diff) | |
download | dexon-solidity-0f23445d84ce1abe8cad8ff438f76f65f3acf77f.tar dexon-solidity-0f23445d84ce1abe8cad8ff438f76f65f3acf77f.tar.gz dexon-solidity-0f23445d84ce1abe8cad8ff438f76f65f3acf77f.tar.bz2 dexon-solidity-0f23445d84ce1abe8cad8ff438f76f65f3acf77f.tar.lz dexon-solidity-0f23445d84ce1abe8cad8ff438f76f65f3acf77f.tar.xz dexon-solidity-0f23445d84ce1abe8cad8ff438f76f65f3acf77f.tar.zst dexon-solidity-0f23445d84ce1abe8cad8ff438f76f65f3acf77f.zip |
Merge pull request #4514 from ethereum/errors_period_missing
Add missing period in the end of error messages
Diffstat (limited to 'test/libsolidity/syntaxTests/array')
-rw-r--r-- | test/libsolidity/syntaxTests/array/no_array_pop.sol | 2 | ||||
-rw-r--r-- | test/libsolidity/syntaxTests/array/static_storage_array_pop.sol | 2 | ||||
-rw-r--r-- | test/libsolidity/syntaxTests/array/string_pop.sol | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/libsolidity/syntaxTests/array/no_array_pop.sol b/test/libsolidity/syntaxTests/array/no_array_pop.sol index 44e54ad2..79a68ef1 100644 --- a/test/libsolidity/syntaxTests/array/no_array_pop.sol +++ b/test/libsolidity/syntaxTests/array/no_array_pop.sol @@ -5,4 +5,4 @@ contract C { } } // ---- -// TypeError: (63-71): Member "pop" not found or not visible after argument-dependent lookup in uint256 +// TypeError: (63-71): Member "pop" not found or not visible after argument-dependent lookup in uint256. diff --git a/test/libsolidity/syntaxTests/array/static_storage_array_pop.sol b/test/libsolidity/syntaxTests/array/static_storage_array_pop.sol index 0af171ad..8414f43d 100644 --- a/test/libsolidity/syntaxTests/array/static_storage_array_pop.sol +++ b/test/libsolidity/syntaxTests/array/static_storage_array_pop.sol @@ -5,4 +5,4 @@ contract C { } } // ---- -// TypeError: (66-74): Member "pop" not found or not visible after argument-dependent lookup in uint256[3] storage ref +// TypeError: (66-74): Member "pop" not found or not visible after argument-dependent lookup in uint256[3] storage ref. diff --git a/test/libsolidity/syntaxTests/array/string_pop.sol b/test/libsolidity/syntaxTests/array/string_pop.sol index 2a46d0c3..700fda16 100644 --- a/test/libsolidity/syntaxTests/array/string_pop.sol +++ b/test/libsolidity/syntaxTests/array/string_pop.sol @@ -5,4 +5,4 @@ contract C { } } // ---- -// TypeError: (65-73): Member "pop" not found or not visible after argument-dependent lookup in string storage ref +// TypeError: (65-73): Member "pop" not found or not visible after argument-dependent lookup in string storage ref. |