diff --git a/test/test-gofmt.sh b/test/test-gofmt.sh index a317a7db..aacf9a3c 100755 --- a/test/test-gofmt.sh +++ b/test/test-gofmt.sh @@ -29,7 +29,7 @@ GOFMT="gofmt" # we prefer to not use the -s flag, which is pretty annoying... bad_files=$(find_files | xargs $GOFMT -l) if [[ -n "${bad_files}" ]]; then echo 'FAIL' - echo 'The following files are not properly formatted:' + echo 'The following golang files are not properly formatted:' echo "${bad_files}" exit 1 fi diff --git a/test/test-yamlfmt.sh b/test/test-yamlfmt.sh index d3a20dd0..3b11b864 100755 --- a/test/test-yamlfmt.sh +++ b/test/test-yamlfmt.sh @@ -45,7 +45,7 @@ bad_files=$( if [[ -n "${bad_files}" ]]; then echo 'FAIL' - echo 'The following files are not properly formatted:' + echo 'The following yaml files are not properly formatted:' echo "${bad_files}" exit 1 fi