Sort urls property for stable testing

This commit is contained in:
Marian Steinbach 2018-10-03 21:20:58 +02:00
parent 57f8dea4e0
commit 764a4647c8

View file

@ -12,7 +12,7 @@ class Config(object):
@property
def urls(self):
return list(self._urls)
return sorted(list(self._urls))
def add_url(self, url):
self._urls.add(url)