Skip to content

Commit

Permalink
fix rpc-tests.sh
Browse files Browse the repository at this point in the history
`${testScripts[@]}` now does split up `testscript --agument` in two elements pushed to the array (`testscript` and `--agument`).
  • Loading branch information
jonasschnelli committed Sep 17, 2015
1 parent 0143a1f commit 312cfe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qa/pull-tester/rpc-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ testScriptsExt=(
);

if [ "x$ENABLE_ZMQ" = "x1" ]; then
testScripts=( ${testScripts[@]} 'zmq_test.py' )
testScripts+=('zmq_test.py')
fi

extArg="-extended"
Expand Down

0 comments on commit 312cfe6

Please sign in to comment.