Fix CI tests domain_level env config

Reviewed-By: Ales 'alich' Marecek <amarecek@redhat.com>
This commit is contained in:
Martin Basti
2015-11-13 19:04:41 +01:00
parent 73058af717
commit 79f7c71e61
2 changed files with 3 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ import six
from ipapython import ipautil
from ipatests.test_integration.config import Config, Domain
from ipalib.constants import MAX_DOMAIN_LEVEL
TESTHOST_PREFIX = 'TESTHOST_'
@@ -61,6 +62,7 @@ _setting_infos = (
_SettingInfo('ipv6', 'IPv6SETUP', False),
_SettingInfo('debug', 'IPADEBUG', False),
_SettingInfo('domain_level', 'DOMAINLVL', MAX_DOMAIN_LEVEL),
)

View File

@@ -59,7 +59,7 @@ DEFAULT_OUTPUT_ENV = {
"ADADMINPW": "Secret123",
"IPv6SETUP": "",
"IPADEBUG": "",
"DOMAINLVL": MAX_DOMAIN_LEVEL
"DOMAINLVL": str(MAX_DOMAIN_LEVEL),
}
DEFAULT_INPUT_ENV = {