summaryrefslogtreecommitdiff
path: root/t/t3200-branch.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-10-17 14:56:33 -0700
committerJunio C Hamano <gitster@pobox.com>2022-10-17 14:56:33 -0700
commit272be0db8b732617245930b92c9a79a1fc5b4398 (patch)
tree109beb70c9857c9feed44f3a0f0a2be99876ddd0 /t/t3200-branch.sh
parent86cc5ee3b7e75cddd0cef956a6ec8a48cdefa5c0 (diff)
parente288b3de35eaaf3febe07cd56565d8e8af17fb1e (diff)
downloadgit-272be0db8b732617245930b92c9a79a1fc5b4398.tar.gz
Merge branch 'jc/branch-description-unset'
"GIT_EDITOR=: git branch --edit-description" resulted in failure, which has been corrected. * jc/branch-description-unset: branch: do not fail a no-op --edit-desc
Diffstat (limited to 't/t3200-branch.sh')
-rwxr-xr-xt/t3200-branch.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh
index b82cffc0b3..d5a1fc1375 100755
--- a/t/t3200-branch.sh
+++ b/t/t3200-branch.sh
@@ -1381,6 +1381,9 @@ test_expect_success 'branch --delete --force removes dangling branch' '
'
test_expect_success 'use --edit-description' '
+ EDITOR=: git branch --edit-description &&
+ test_must_fail git config branch.main.description &&
+
write_script editor <<-\EOF &&
echo "New contents" >"$1"
EOF