summaryrefslogtreecommitdiff
path: root/python/samba
diff options
context:
space:
mode:
Diffstat (limited to 'python/samba')
-rw-r--r--python/samba/tests/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/python/samba/tests/__init__.py b/python/samba/tests/__init__.py
index f904499b90b..cbd164de1f9 100644
--- a/python/samba/tests/__init__.py
+++ b/python/samba/tests/__init__.py
@@ -113,10 +113,11 @@ class TestCase(unittest.TestCase):
def insta_creds(self, template=None, username=None, userpass=None, kerberos_state=None):
if template is None:
- assert template is not None
+ raise ValueError("you need to supply a Credentials template")
- if username is not None:
- assert userpass is not None
+ if username is not None and userpass is None:
+ raise ValueError(
+ "you cannot set creds username without setting a password")
if username is None:
assert userpass is None