t4205 (log-pretty-formats): don't hardcode SHA-1 in expected outputs
[gitweb.git] / t / t5520-pull.sh
index cb1a4c581fe96d6bf5fe2cfc6e4870a5146e2d38..6af6c63350383e049082e61d3c8133af79d5a749 100755 (executable)
@@ -167,9 +167,9 @@ test_expect_success 'pull --rebase dies early with dirty working directory' '
        git update-ref refs/remotes/me/copy copy^ &&
        COPY=$(git rev-parse --verify me/copy) &&
        git rebase --onto $COPY copy &&
-       git config branch.to-rebase.remote me &&
-       git config branch.to-rebase.merge refs/heads/copy &&
-       git config branch.to-rebase.rebase true &&
+       test_config branch.to-rebase.remote me &&
+       test_config branch.to-rebase.merge refs/heads/copy &&
+       test_config branch.to-rebase.rebase true &&
        echo dirty >> file &&
        git add file &&
        test_must_fail git pull &&