mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-18 20:57:56 +00:00
Fix malformed test assert message in executeOk_servald()
The assertion message was omitting the details of the command executed.
This commit is contained in:
parent
7edf1a912e
commit
bc6396ec28
@ -99,7 +99,7 @@ extract_stdout_keyvalue_optional() {
|
||||
# commands that return "key:value\n" pairs.
|
||||
extract_stdout_keyvalue() {
|
||||
local _label="$2"
|
||||
assert --message="stdout of ($executed) contains valid '$_label:' line" --stdout extract_stdout_keyvalue_optional "$@"
|
||||
assert --message="stdout of ($TFWEXECUTED) contains valid '$_label:' line" --stdout extract_stdout_keyvalue_optional "$@"
|
||||
}
|
||||
|
||||
# Parse the standard result set output produced by the immediately preceding command
|
||||
@ -189,7 +189,7 @@ execute_servald() {
|
||||
# - asserts that standard error contains no error messages
|
||||
executeOk_servald() {
|
||||
executeOk --core-backtrace --executable=$servald "$@"
|
||||
assertStderrGrep --matches=0 --message="stderr of ($executed) contains no error messages" '^ERROR:'
|
||||
assertStderrGrep --matches=0 --message="stderr of ($TFWEXECUTED) contains no error messages" '^ERROR:'
|
||||
}
|
||||
|
||||
# Utility function:
|
||||
|
Loading…
Reference in New Issue
Block a user