Fixing typo for cert_validate

Due to this typo cert_validate had been recognized as tuple but
not boolean.

Change-Id: I379ddaf644d199e3c1b609d31e28942fb1a1f12f
This commit is contained in:
Oleh Hryhorov 2020-06-09 20:52:31 +03:00
parent 62e3458894
commit 9f622d86d4
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ def load_tests(loader, tests, pattern):
else:
register_test_case_id(test_case)
cert_validate = not conf.disable_ssl_certificate_validation,
cert_validate = not conf.disable_ssl_certificate_validation
try:
api_tests = driver.build_tests(test_dir, loader, url=endpoint, host="",
fixture_module=fixtures,