diff options
Diffstat (limited to 'test/test_parsers.py')
-rw-r--r-- | test/test_parsers.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/test_parsers.py b/test/test_parsers.py index 420f9ff..7a30f2e 100644 --- a/test/test_parsers.py +++ b/test/test_parsers.py @@ -1,6 +1,7 @@ import unittest from utils import WebhookTestCaseBase + class WebhookTestCase(WebhookTestCaseBase): test_case = None @@ -19,7 +20,10 @@ class WebhookTestCase(WebhookTestCaseBase): # GAD configuration for this test case config = { - 'port': 0, + 'http-port': 0, + 'https-enabled': False, + 'wss-enabled': False, + 'web-ui-require-https': False, 'intercept-stdout': False, 'detailed-response': True, 'log-level': 'ERROR', |