Skip to content

Commit 2b48624

Browse files
committed
tweak integration test script
1 parent f1839cc commit 2b48624

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demos/integration_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ export PATH=$GOPATH/bin:$PATH
3737
function runTest {
3838
local script=$1
3939
shift
40-
local args=$@
40+
local args=$@
4141

4242
if [ ! -x "$script" ]; then
4343
exit_with "Unable to run $script"
4444
fi
4545

4646
$script "$args"
47-
if [ $? -ne 0 ]; then
47+
if [ $? -ne 0 ]; then
4848
exit_with "Failed: $script $args"
4949
fi
5050
echo "$script passed."

0 commit comments

Comments
 (0)