diff options
author | Garming Sam <garming@catalyst.net.nz> | 2014-03-13 12:24:36 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-05-07 19:49:17 +0200 |
commit | b6b9f0821a4b1687d6aed71469b72016b93e15a1 (patch) | |
tree | a7c284b4bd08d0fbf3ee49462a4b28b5f1b65f4c /python | |
parent | 20159a5b640dd7fe5a626d63dde34a2eff6a9625 (diff) | |
download | samba-b6b9f0821a4b1687d6aed71469b72016b93e15a1.tar.gz |
docs: enable checking of parametric options assignment
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/samba/tests/docs.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/python/samba/tests/docs.py b/python/samba/tests/docs.py index b11e4f19722..ab25b6c91a0 100644 --- a/python/samba/tests/docs.py +++ b/python/samba/tests/docs.py @@ -240,8 +240,7 @@ class SmbDotConfTests(TestCase): for tuples in defaults: param, default, context, param_type = tuples - # temporarily remove parametric options - no dump available in s4 - if param in ['printing'] or ':' in param: + if param in ['printing']: continue section = None @@ -280,8 +279,7 @@ class SmbDotConfTests(TestCase): for tuples in defaults: param, default, context, param_type = tuples - # temporarily remove parametric options - no dump available in s4 - if param in ['printing', 'copy', 'include', 'log level'] or ':' in param: + if param in ['printing', 'copy', 'include', 'log level']: continue # currently no easy way to set an arbitrary value for these |