Skip to content

Commit 9db2892

Browse files
authored
Fix regression test run.sh script (#698)
1 parent 81de1a2 commit 9db2892

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

regtests/run.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
export SPARK_VERSION=spark-3.5.3
2323
export SPARK_DISTRIBUTION=${SPARK_VERSION}-bin-hadoop3
2424

25-
if [ -z "${SPARK_HOME}"]; then
25+
if [ -z "${SPARK_HOME}" ]; then
2626
export SPARK_HOME=$(realpath ~/${SPARK_DISTRIBUTION})
2727
fi
2828
export PYTHONPATH="${SPARK_HOME}/python/:${SPARK_HOME}/python/lib/py4j-0.10.9.7-src.zip:$PYTHONPATH"
@@ -91,7 +91,7 @@ for TEST_FILE in ${TEST_LIST}; do
9191
fi
9292
fi
9393
if [[ "${TEST_SHORTNAME}" =~ .*.s3_cross_region.*.sh ]]; then
94-
if [ -z "$AWS_CROSS_REGION_TEST_ENABLED" ] || [ "$AWS_CROSS_REGION_TEST_ENABLED" != "true" ] ] ; then
94+
if [ -z "$AWS_CROSS_REGION_TEST_ENABLED" ] || [ "$AWS_CROSS_REGION_TEST_ENABLED" != "true" ] ; then
9595
loginfo "AWS cross region tests not enabled, skip running test ${TEST_FILE}"
9696
continue
9797
fi

0 commit comments

Comments
 (0)