diff --git a/tests/run-tests.sh b/tests/run-tests.sh index ff71cc5..97307b9 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -35,6 +35,6 @@ error=$? # Print *.actual content if tests failed if [ "${VERBOSE-false}" != "false" -a $error -ne 0 ]; then - for i in $(find . -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done + for i in $(find ./tests/ -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done exit $error fi