Code

t7006: modernize calls to unset
[git.git] / t / t7006-pager.sh
index ed7575d0fdf9eebf65d808fa810ab4cc03095025..c0a3135c73f3e8800217d8f1c21786393c71415b 100755 (executable)
@@ -402,7 +402,7 @@ test_core_pager_subdir    expect_success test_must_fail \
                                         'git -p apply </dev/null'
 
 test_expect_success TTY 'command-specific pager' '
-       unset PAGER GIT_PAGER;
+       sane_unset PAGER GIT_PAGER &&
        echo "foo:initial" >expect &&
        >actual &&
        git config --unset core.pager &&
@@ -412,7 +412,7 @@ test_expect_success TTY 'command-specific pager' '
 '
 
 test_expect_success TTY 'command-specific pager overrides core.pager' '
-       unset PAGER GIT_PAGER;
+       sane_unset PAGER GIT_PAGER &&
        echo "foo:initial" >expect &&
        >actual &&
        git config core.pager "exit 1"