From ece75ea9a6f1fd0b86593287a22993482c7b2cc5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Jacke?= Date: Wed, 20 Dec 2017 21:23:24 +0100 Subject: [PATCH] tests:docs: don't try to test parametric option defaults we don't get the values of the parametric options. Signed-off-by: Bjoern Jacke Reviewed-by: Andrew Bartlett Reviewed-by: Garming Sam --- python/samba/tests/docs.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/samba/tests/docs.py b/python/samba/tests/docs.py index 521efe535be..0c5b50e314c 100644 --- a/python/samba/tests/docs.py +++ b/python/samba/tests/docs.py @@ -186,6 +186,9 @@ class SmbDotConfTests(TestCase): if param in self.special_cases: continue + # bad, bad parametric options - we don't have their default values + if ':' in param: + continue section = None if context == "G": section = "global" -- 2.47.3