[tests] Do not rely on env output to be sorted alphabetically

This commit is contained in:
Mahmoud Al-Qudsi 2020-06-25 21:41:06 -05:00
parent c3849ebeba
commit d0afae46ce

View file

@ -585,7 +585,7 @@ end
set -x TESTVAR0 set -x TESTVAR0
set -x TESTVAR1 a set -x TESTVAR1 a
set -x TESTVAR2 a b set -x TESTVAR2 a b
env | grep TESTVAR | cat -v env | grep TESTVAR | sort | cat -v
#CHECK: TESTVAR0= #CHECK: TESTVAR0=
#CHECK: TESTVAR1=a #CHECK: TESTVAR1=a
#CHECK: TESTVAR2=a b #CHECK: TESTVAR2=a b