1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-10 21:36:15 +02:00

t3206: fix incorrect test name

The name of the test used to indicate that it was testing the `--notes`
option but it was really testing the `format.notes` configuration.
Correct the test name to reflect this.

Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Denton Liu 2019-12-06 12:16:22 -08:00 committed by Junio C Hamano
parent 5b583e6a09
commit 828765dfe0

View File

@ -638,7 +638,7 @@ test_expect_success 'format-patch --range-diff with --notes' '
test_cmp expect actual
'
test_expect_success 'format-patch --range-diff with --notes' '
test_expect_success 'format-patch --range-diff with format.notes config' '
git notes add -m "topic note" topic &&
git notes add -m "unmodified note" unmodified &&
test_when_finished git notes remove topic unmodified &&