mirror of
https://github.com/certbot/certbot.git
synced 2026-06-11 09:40:41 -04:00
Python2.6: It's called a set
This commit is contained in:
parent
1d09a00d05
commit
08d7c06a54
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ class ErrorHandlerTest(unittest.TestCase):
|
|||
from letsencrypt import error_handler
|
||||
|
||||
self.init_func = mock.MagicMock()
|
||||
self.init_args = {42}
|
||||
self.init_args = set((42,))
|
||||
self.init_kwargs = {'foo': 'bar'}
|
||||
self.handler = error_handler.ErrorHandler(self.init_func,
|
||||
*self.init_args,
|
||||
|
|
|
|||
Loading…
Reference in a new issue