test_e2e.sh: explicitly pass parameters to 'caller' function

Fixes SC2120. Part of #891.
This commit is contained in:
Raúl Benencia 2024-06-23 10:24:53 -07:00 committed by Tim Hockin
parent da2d7ca2f2
commit 791aecfc17
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ function caller() {
}
function fail() {
echo "FAIL: line $(caller):" "$@" >&3
echo "FAIL: line $(caller "$@"):" "$@" >&3
return 42
}