Merge "Use string comparison to compare UUID values"

This commit is contained in:
Jenkins 2017-03-17 16:07:16 +00:00 committed by Gerrit Code Review
commit aff17b14f1
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ function configure_tempest {
# Ensure ``flavor_ref`` and ``flavor_ref_alt`` have different values.
# Some resize instance in tempest tests depends on this.
for f in ${flavors[@]:1}; do
if [[ $f -ne $flavor_ref ]]; then
if [[ "$f" != "$flavor_ref" ]]; then
flavor_ref_alt=$f
break
fi