Make function output deterministic

This commit is contained in:
Marian Steinbach 2018-05-03 11:44:00 +02:00
parent ab801e646b
commit 0450cfaac2
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ def derive_test_hostnames(hostname):
else:
hostnames.add('www.' + hostname)
return list(hostnames)
return sorted(list(hostnames))
def reduce_urls(urllist):