From 244c191f9e1f6a27ec52261a31f7130106bb0310 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 20 Jan 2011 07:20:06 +1100 Subject: 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 --- source4/dsdb/tests/python/token_group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/dsdb/tests') 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: -- cgit