Message ID | 20201118190414.32616-2-szeder.dev@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 7f9c59ddb12377b787b9a0d4b79b68755541cf7f |
Headers | show |
Series | [1/2] tests: make sure nested lazy prereqs work reliably | expand |
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).
'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 <szeder.dev@gmail.com> --- t/test-lib-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)