]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t3206: fix incorrect test name
authorDenton Liu <liu.denton@gmail.com>
Fri, 6 Dec 2019 20:16:22 +0000 (12:16 -0800)
committerJunio C Hamano <gitster@pobox.com>
Fri, 6 Dec 2019 20:34:17 +0000 (12:34 -0800)
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>
t/t3206-range-diff.sh

index ec2b456dbb8667eb7c7c1d423259639fe5f2853c..0575dd72b11eaebf5ea026cd7aff286dcdacb92c 100755 (executable)
@@ -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 &&