diff --git a/demos/integration_tests.sh b/demos/integration_tests.sh index 0f37c115c..450124234 100755 --- a/demos/integration_tests.sh +++ b/demos/integration_tests.sh @@ -37,14 +37,14 @@ export PATH=$GOPATH/bin:$PATH function runTest { local script=$1 shift - local args=$@ + local args=$@ if [ ! -x "$script" ]; then exit_with "Unable to run $script" fi $script "$args" - if [ $? -ne 0 ]; then + if [ $? -ne 0 ]; then exit_with "Failed: $script $args" fi echo "$script passed."