test: Add trailing newline to error messages

The newline was removed from say_color in commit 222926ab to allow
printing test status in the beginning of the line. Error messages are
never followed by other text so we add the newline to error function.
This commit is contained in:
Michal Sojka 2010-11-14 22:54:29 +01:00 committed by Carl Worth
parent ac9dbb47de
commit c8d51e2912

View file

@ -144,7 +144,7 @@ else
fi fi
error () { error () {
say_color error "error: $*" say_color error "error: $*\n"
GIT_EXIT_OK=t GIT_EXIT_OK=t
exit 1 exit 1
} }