diff options
-rwxr-xr-x | src/config/SSSDConfigTest.py | 3 | ||||
-rw-r--r-- | src/config/etc/sssd.api.conf | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/config/SSSDConfigTest.py b/src/config/SSSDConfigTest.py index 8991f365..60fb0a24 100755 --- a/src/config/SSSDConfigTest.py +++ b/src/config/SSSDConfigTest.py @@ -963,9 +963,6 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase): def testGetOption(self): domain = SSSDConfig.SSSDDomain('sssd', self.schema) - # Positive Test - Ensure that we can get a valid option - self.assertEqual(domain.get_option('debug_level'), 0) - # Negative Test - Try to get valid option that is not set self.assertRaises(SSSDConfig.NoOptionError, domain.get_option, 'max_id') diff --git a/src/config/etc/sssd.api.conf b/src/config/etc/sssd.api.conf index 5127b852..426c5142 100644 --- a/src/config/etc/sssd.api.conf +++ b/src/config/etc/sssd.api.conf @@ -45,7 +45,7 @@ chpass_provider = str, None, false [domain] # Options available to all domains -debug_level = int, None, false, 0 +debug_level = int, None, false debug_timestamps = bool, None, false command = str, None, false min_id = int, None, false |