Skip to content
Snippets Groups Projects
Commit 8b0f4ff9 authored by Rajmund Hruška's avatar Rajmund Hruška
Browse files

Fix: Change default value of environ_base to empty dictionary. (Redmine issue: #7587)

parent af7fa5d4
No related branches found
No related tags found
No related merge requests found
......@@ -467,7 +467,7 @@ class RegistrationHawatTestCase(HawatTestCase):
'timezone': None
}
def assertRegisterFail(self, url, data, environ_base = None): # pylint: disable=locally-disabled,invalid-name
def assertRegisterFail(self, url, data, environ_base = {}): # pylint: disable=locally-disabled,invalid-name
response = response = self.client.get(
url,
follow_redirects = True,
......@@ -506,7 +506,7 @@ class RegistrationHawatTestCase(HawatTestCase):
)
def assertRegister(self, url, data, emails, environ_base = None): # pylint: disable=locally-disabled,invalid-name
def assertRegister(self, url, data, emails, environ_base = {}): # pylint: disable=locally-disabled,invalid-name
uname = 'test'
self.mailbox_monitoring('on')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment