From 9a5e2eb194e902226f1f4e2106e5b8b2f5b4133a Mon Sep 17 00:00:00 2001 From: Victor Ryzhenkin Date: Thu, 14 Jul 2016 15:14:12 +0300 Subject: [PATCH] Fix a typo in system test runner - stacklight_tests -> murano_plugin_tests Change-Id: I2851871f93a0039adda00b5c7a17bb20e6dc8c78 --- utils/jenkins/system_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/jenkins/system_tests.sh b/utils/jenkins/system_tests.sh index b83f26a..dff9be2 100755 --- a/utils/jenkins/system_tests.sh +++ b/utils/jenkins/system_tests.sh @@ -430,11 +430,11 @@ RunTest() { # run python test set to create environments, deploy and test product if [ "${DRY_RUN}" = "yes" ]; then echo export PYTHONPATH="${PYTHONPATH:+${PYTHONPATH}:}${WORKSPACE}" - echo python stacklight_tests/run_tests.py -q --nologcapture --with-xunit ${OPTS} + echo python murano_plugin_tests/run_tests.py -q --nologcapture --with-xunit ${OPTS} else export PYTHONPATH="${PYTHONPATH:+${PYTHONPATH}:}${WORKSPACE}" echo ${PYTHONPATH} - python stacklight_tests/run_tests.py -q --nologcapture --with-xunit ${OPTS} + python murano_plugin_tests/run_tests.py -q --nologcapture --with-xunit ${OPTS} fi ec=$?