diff --git a/systemvm/test/runtests.sh b/systemvm/test/runtests.sh index 94958e531b0..c6a58bdb92a 100644 --- a/systemvm/test/runtests.sh +++ b/systemvm/test/runtests.sh @@ -26,7 +26,7 @@ pycodestyle --max-line-length=179 *py pycodestyle --max-line-length=179 --exclude=monitorServices.py,baremetal-vr.py,passwd_server_ip.py `find ../debian -name \*.py` if [ $? -gt 0 ] then - echo "Pylint failed, please check your code" + echo "pycodestyle failed, please check your code" exit 1 fi @@ -35,7 +35,7 @@ pylint --disable=R,C,W *.py pylint --disable=R,C,W `find ../debian -name \*.py` if [ $? -gt 0 ] then - echo "Pylint failed, please check your code" + echo "pylint failed, please check your code" exit 1 fi