test: fix

This commit is contained in:
Luke McCrone
2025-06-19 15:26:43 -03:00
parent 71333b2709
commit 23007f4198
-11
View File
@@ -39,17 +39,6 @@ log() {
return 0
}
log_with_stack_ref() {
if ! check_log_params "log_with_stack_ref" "level, message, stack reference" 3 $#; then
return 1
fi
if ! log_with_stack_ref "$1" "$2" 2; then
echo "error logging with stack ref"
return 1
fi
return 0
}
log_with_stack_ref() {
if [[ $# -ne 3 ]]; then
echo "log_with_stack_ref function requires level, message, stack reference"