Commit d019dd25 authored by Łukasz Nowak's avatar Łukasz Nowak

Fixups.

getServicePassword returns '' if no password.
Fix typo in setter.
parent c36af6c0
...@@ -151,8 +151,8 @@ class testVifibMixin(ERP5TypeTestCase): ...@@ -151,8 +151,8 @@ class testVifibMixin(ERP5TypeTestCase):
# avoid resetting prepared site # avoid resetting prepared site
if payzen.getServiceUsername() is None: if payzen.getServiceUsername() is None:
payzen.setServiceUsername('12345') payzen.setServiceUsername('12345')
if payzen.getServicePassword() is None: if payzen.getServicePassword() == '':
payzen.setServicePassowrd('09876') payzen.setServicePassword('09876')
def setupPortalCertificateAuthority(self): def setupPortalCertificateAuthority(self):
"""Sets up portal_certificate_authority""" """Sets up portal_certificate_authority"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment