From: SZEDER Gábor Date: Wed, 18 Nov 2020 19:04:14 +0000 (+0100) Subject: tests: fix description of 'test_set_prereq' X-Git-Tag: v2.30.0-rc0~53^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7f9c59ddb12377b787b9a0d4b79b68755541cf7f;p=thirdparty%2Fgit.git tests: fix description of 'test_set_prereq' 'test_set_prereq's description claims that prereqs can be specified to 'test_expect_code', but that is not the case (it is not meant to run a test _case_, but a git command), so remove it. OTOH that description doesn't mention 'test_external' and 'test_external_without_stderr' that do accept prereqs, so mention them. Signed-off-by: SZEDER Gábor Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index 94395b9807..21b2ea55b7 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-functions.sh @@ -423,7 +423,7 @@ write_script () { # - Explicitly using test_have_prereq. # # - Implicitly by specifying the prerequisite tag in the calls to -# test_expect_{success,failure,code}. +# test_expect_{success,failure} and test_external{,_without_stderr}. # # The single parameter is the prerequisite tag (a simple word, in all # capital letters by convention).