Imported Upstream version 2.14.0
[platform/upstream/git.git] / t / lib-proto-disable.sh
index 83babe5..02f49cb 100644 (file)
@@ -147,33 +147,29 @@ test_config () {
        # Test clone/fetch/push with protocol.allow user defined default
        test_expect_success "clone $desc (enabled)" '
                rm -rf tmp.git &&
-               test_config_global protocol.allow always &&
+               git config --global protocol.allow always &&
                git clone --bare "$url" tmp.git
        '
 
        test_expect_success "fetch $desc (enabled)" '
-               test_config_global protocol.allow always &&
                git -C tmp.git fetch
        '
 
        test_expect_success "push $desc (enabled)" '
-               test_config_global protocol.allow always &&
                git -C tmp.git push origin HEAD:pushed
        '
 
        test_expect_success "push $desc (disabled)" '
-               test_config_global protocol.allow never &&
+               git config --global protocol.allow never &&
                test_must_fail git -C tmp.git push origin HEAD:pushed
        '
 
        test_expect_success "fetch $desc (disabled)" '
-               test_config_global protocol.allow never &&
                test_must_fail git -C tmp.git fetch
        '
 
        test_expect_success "clone $desc (disabled)" '
                rm -rf tmp.git &&
-               test_config_global protocol.allow never &&
                test_must_fail git clone --bare "$url" tmp.git
        '
 }