diff options
author | Lumir Balhar <lbalhar@redhat.com> | 2016-12-20 10:57:13 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2017-03-10 07:31:11 +0100 |
commit | 1ac5bf21a1efdc74d377feff74f15021c69e009e (patch) | |
tree | 0b18bda1b141f7b908e1e140259a8a162ddc0dfc /selftest | |
parent | 47b014899aa7de4e9f23f937c3419599723e596e (diff) | |
download | samba-1ac5bf21a1efdc74d377feff74f15021c69e009e.tar.gz |
python: samba.auth: Port samba.auth to Python 3 compatible form
Port samba.auth Python module to Python 3 compatible form and
enable tests execution with Python 3.
Signed-off-by: Lumir Balhar <lbalhar@redhat.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'selftest')
-rw-r--r-- | selftest/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/tests.py b/selftest/tests.py index 150948325b3..b3027c41a24 100644 --- a/selftest/tests.py +++ b/selftest/tests.py @@ -54,7 +54,7 @@ planpythontestsuite("none", "samba.tests.blackbox.ndrdump") planpythontestsuite("none", "api", name="ldb.python", extra_path=['lib/ldb/tests/python']) planpythontestsuite("none", "samba.tests.credentials", py3_compatible=True) planpythontestsuite("none", "samba.tests.registry") -planpythontestsuite("none", "samba.tests.auth") +planpythontestsuite("none", "samba.tests.auth", py3_compatible=True) planpythontestsuite("none", "samba.tests.get_opt") planpythontestsuite("none", "samba.tests.security") planpythontestsuite("none", "samba.tests.dcerpc.misc", py3_compatible=True) |