diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/t3301-notes.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/t/t3301-notes.sh b/t/t3301-notes.sh index 70ec5c395f..416ed9e9dc 100755 --- a/t/t3301-notes.sh +++ b/t/t3301-notes.sh @@ -1274,4 +1274,16 @@ append -C "$empty_blob" edit EOF +test_expect_success 'empty notes are displayed by git log' ' + test_commit 17th && + git log -1 >expect && + cat >>expect <<\EOF && + +Notes: +EOF + git notes add -C "$empty_blob" --allow-empty && + git log -1 >actual && + test_cmp expect actual +' + test_done |