Skip to content

Commit

Permalink
Merge pull request DLTcollab#747 from HowJMay/fix_regression
Browse files Browse the repository at this point in the history
fix(tests): Fix regression tests connection failure
  • Loading branch information
jserv authored Aug 11, 2020
2 parents 6d83549 + 6547a9c commit b092a0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/regression/router-sanitizer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ for ((i = 0; i < ${#SAN_OPTIONS[@]}; i++)); do
done <<<$(nc -U -l $socket | tr '\0' '\n')
echo "==============TA has successfully started=============="

python3 tests/regression/runner.py ${remaining_args} --url localhost:${TA_PORT}
python3 tests/regression/runner.py ${remaining_args} --url ${TA_HOST}:${TA_PORT}
rc=$?

if [ $rc -ne 0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion tests/regression/run-api.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ for ((i = 0; i < ${#OPTIONS[@]}; i++)); do
done <<<$(nc -U -l $socket | tr '\0' '\n')
echo "==============TA has successfully started=============="

python3 tests/regression/runner.py ${remaining_args} --url localhost:${TA_PORT}
python3 tests/regression/runner.py ${remaining_args} --url ${TA_HOST}:${TA_PORT}
rc=$?

if [ $rc -ne 0 ]; then
Expand Down

0 comments on commit b092a0a

Please sign in to comment.