From 61976e4fcf49b340a50487d177dea38321ab0e06 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 11 Jun 2010 10:04:19 +0200 Subject: s4:passwords.py - use "self" before "enable_account" to make really sure which LDB connection should be used --- source4/lib/ldb/tests/python/passwords.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/ldb/tests') diff --git a/source4/lib/ldb/tests/python/passwords.py b/source4/lib/ldb/tests/python/passwords.py index eb88fc4824..5988cf6b1a 100755 --- a/source4/lib/ldb/tests/python/passwords.py +++ b/source4/lib/ldb/tests/python/passwords.py @@ -87,7 +87,7 @@ class PasswordTests(unittest.TestCase): "objectclass": ["user", "person"], "sAMAccountName": "testuser", "userPassword": "thatsAcomplPASS1" }) - ldb.enable_account("(sAMAccountName=testuser)") + self.ldb.enable_account("(sAMAccountName=testuser)") # Open a second LDB connection with the user credentials. Use the # command line credentials for informations like the domain, the realm -- cgit