Merge "Fix : sort variables fetched from env list" into stable/rocky

This commit is contained in:
Zuul 2019-03-29 07:04:50 +00:00 committed by Gerrit Code Review
commit eb21321d60
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ function test_export_proxy_variables {
export_proxy_variables
expected=$(echo -e "http_proxy=$http_proxy\nhttps_proxy=$https_proxy\nno_proxy=$no_proxy")
results=$(env | egrep '(http(s)?|no)_proxy=')
results=$(env | egrep '(http(s)?|no)_proxy=' | sort)
if [[ $expected = $results ]]; then
passed "OK: Proxy variables are exported when proxy variables are set"
else