use sorted(archs) to not confuse tests

This commit is contained in:
Tomas Kopecek 2017-05-03 14:25:30 +02:00
parent 0eebe53b27
commit f8f373e2b6

View file

@ -365,7 +365,7 @@ class BaseTaskHandler(object):
else:
# no overlap
raise koji.BuildError("host %s (%s) does not support any arches of tag %s (%s)" % \
(host['name'], ', '.join(host_arches), tag['name'], ', '.join(tag_arches)))
(host['name'], ', '.join(sorted(host_arches)), tag['name'], ', '.join(sorted(tag_arches))))
def getRepo(self, tag):
"""