File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -357,8 +357,8 @@ function hardhat_verify_compiler_version
357
357
local build_info_files
358
358
build_info_files=$( find . -path ' *artifacts/build-info/*.json' )
359
359
for build_info_file in $build_info_files ; do
360
- grep ' "solcVersion": "' " ${solc_version} " ' "' --with-filename " $build_info_file " || fail " Wrong compiler version detected in ${build_info_file} ."
361
- grep ' "solcLongVersion": "' " ${full_solc_version} " ' "' --with-filename " $build_info_file " || fail " Wrong compiler version detected in ${build_info_file} ."
360
+ grep ' "solcVersion":[[:blank:]]* "' " ${solc_version} " ' "' --with-filename " $build_info_file " || fail " Wrong compiler version detected in ${build_info_file} ."
361
+ grep ' "solcLongVersion":[[:blank:]]* "' " ${full_solc_version} " ' "' --with-filename " $build_info_file " || fail " Wrong compiler version detected in ${build_info_file} ."
362
362
done
363
363
}
364
364
Original file line number Diff line number Diff line change @@ -108,6 +108,8 @@ function zeppelin_test
108
108
sed -i " s|it(\('other accounts cannot unpause'\)|it.skip(\1|g" test/token/ERC721/presets/ERC721PresetMinterPauserAutoId.test.js
109
109
sed -i " s|it(\('prevents initialization'\)|it.skip(\1|g" test/proxy/utils/Initializable.test.js
110
110
sed -i " s|it(\('divide by 0'\)|it.skip(\1|g" test/utils/math/Math.test.js
111
+ sed -i " s|it(\('pending owner resets after renouncing ownership'\)|it.skip(\1|g" test/access/Ownable2Step.test.js
112
+ sed -i " s|it(\('guards transfer against invalid user'\)|it.skip(\1|g" test/access/Ownable2Step.test.js
111
113
# CAUTION:: The following two sed commands depend on the order of occurrence of the relevant patterns in the mentioned files.
112
114
# Could result in an error in the future.
113
115
sed -zi " s|it(\('deposit'\)|it.skip(\1|3" test/token/ERC20/extensions/ERC4626.test.js
You can’t perform that action at this time.
0 commit comments