diff --git a/test/common.bash b/test/common.bash index f4c4f0744..f0cef9743 100644 --- a/test/common.bash +++ b/test/common.bash @@ -243,17 +243,6 @@ prerequisites_ok () { fi } -# Wrapper for Bats run() to work around Bats bug #89 by saving/restoring $IFS. -# See issues #552 and #555 and https://stackoverflow.com/a/32425874. -if type run &> /dev/null; then - eval bats_"$(declare -f run)" -fi -run () { - local ifs_old="$IFS" - bats_run "$@" - IFS="$ifs_old" -} - scope () { if [[ -n $ch_one_test ]]; then # Ignore scope if a single test is given.