diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-01-20 07:20:06 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-01-19 23:11:31 +0100 |
commit | 244c191f9e1f6a27ec52261a31f7130106bb0310 (patch) | |
tree | f174387e6b06e97fe059541c8e78075b2f6cc30e /source4/dsdb | |
parent | 4744da8762c492654204b0ee0b3c47631f44ce29 (diff) | |
download | samba-244c191f9e1f6a27ec52261a31f7130106bb0310.tar.gz samba-244c191f9e1f6a27ec52261a31f7130106bb0310.tar.bz2 samba-244c191f9e1f6a27ec52261a31f7130106bb0310.zip |
s4-dsdb Don't use None as the input to the GENSEC loop in tokengroups test
The input to gensec.update() should always be a string.
Andrew Bartlett
Diffstat (limited to 'source4/dsdb')
-rwxr-xr-x | source4/dsdb/tests/python/token_group.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/tests/python/token_group.py b/source4/dsdb/tests/python/token_group.py index a35f1836e2..e3ffbac2d5 100755 --- a/source4/dsdb/tests/python/token_group.py +++ b/source4/dsdb/tests/python/token_group.py @@ -133,7 +133,7 @@ class TokenTest(samba.tests.TestCase): client_finished = False server_finished = False - server_to_client = None + server_to_client = "" """Run the actual call loop""" while client_finished == False and server_finished == False: |