diff options
author | Derrick Stolee <derrickstolee@github.com> | 2023-01-27 21:06:01 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-01-27 21:38:26 +0100 |
commit | 008217cb4a11b1bd9d25eda2d412d813cfeacd9f (patch) | |
tree | 8670413512eec0c40113296997fd34664494f191 /t/test-lib-functions.sh | |
parent | The eleventh batch (diff) | |
download | git-008217cb4a11b1bd9d25eda2d412d813cfeacd9f.tar.xz git-008217cb4a11b1bd9d25eda2d412d813cfeacd9f.zip |
t: allow 'scalar' in test_must_fail
This will enable scalar tests to use the test_must_fail helper, when
necessary.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib-functions.sh')
-rw-r--r-- | t/test-lib-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index 7992222703..75b8ee95e7 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-functions.sh @@ -1016,7 +1016,7 @@ test_must_fail_acceptable () { fi case "$1" in - git|__git*|test-tool|test_terminal) + git|__git*|scalar|test-tool|test_terminal) return 0 ;; *) |