mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
Show output for assert_line() and refure_line()
Required for diagnostics
This commit is contained in:
parent
864cd79980
commit
32a86a84c0
1 changed files with 4 additions and 2 deletions
|
@ -84,7 +84,8 @@ assert_line() {
|
|||
for line in "${lines[@]}"; do
|
||||
if [ "$line" = "$1" ]; then return 0; fi
|
||||
done
|
||||
flunk "expected line \`$1'"
|
||||
flunk "expected line \`$1'" $'\n'\
|
||||
"output: $output"
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -98,7 +99,8 @@ refute_line() {
|
|||
local line
|
||||
for line in "${lines[@]}"; do
|
||||
if [ "$line" = "$1" ]; then
|
||||
flunk "expected to not find line \`$line'"
|
||||
flunk "expected to not find line \`$line'" $'\n'\
|
||||
"output: $output"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue